Convolucion
Convolucion
tiempo
de
la
frecuencia.
II.
MARCO TERICO
III.
v ( t ) * w( t )
(Ecuacin 1)
- Convoluciones
IV.
PRACTICAS EN MATLAB
La figura 2.1 que se muestra en la parte de abajo
la vamos a utilizar para hacer la convolucin de una
imagen.
Ley asociativa.
La ley asociativa para la convolucin establece que
[f1(t) * f2(t)] * f3(t) = f1(t) * [ f2(t) * f3(t)]
(Ecuacin 3)
Ley distributiva.
La ley distributiva para la convolucin establece que
f1(t) *[ f2(t)] + f3(t)] = f1(t) * f2(t) + f1(t) * f3(t)]
(Ecuacin 4)
Escuela de Ingeniera Electrnica en Control y Redes Industriales
- Convoluciones
h=[1/50,1/50,1/50];
y=convn(x,h);
imwrite(y,'C:\Program
Files\MATLAB\image1.jpg');
subplot(2,2,4);
imshow(y);
title('\bf IMAGEN DESPUES DE LA
CONVOLUCIN 1/50');
ylabel('e(t)');
subplot(3,1,2);
plot(t,g);
title('cos(2*pi*t)');
xlabel('Tiempo(t)');
ylabel('cos(2*pi*100*t)');
%Convoluciones
g_conv=conv(g,g_escalon);
subplot(3,1,3);
plot(t,g_conv(1:length(g)),'r');
title('Convolucion');
xlabel('Tiempo(t)')
%Transformada y representacion en
frecuencia de la convolucion
G_conv=fftshift(fft(g_conv));
%Magnitud de la transformada
Gm_conv=abs(G_conv);
%Base de la frecuencia
delta_t=t(2)-t(1);
f=((1:length(g_conv))ceil(length(g_conv)/2))/length(g_conv)/del
ta_t;
figure(2)
subplot(2,1,1);
plot(f,Gm_conv,'r');
title('Transformada');
- Convoluciones
REFERENCIAS
AUTORES
Caroline Jara
Erika Taday
Eliana Pilco
Samantha Snchez
Janeth Yumbillo
Angela Patache
414
449
433
452
541
571
- Convoluciones