You are on page 1of 4

Para la funcin x(t) = sen(2..t).e-(t.

t), expresar y graficar, en el intervalo t = [-3, 3] las siguientes


funciones.

ESTA ES LA GRAFICA DE LA FUNCION ORIGINAL (x (t) = sen(2..t).e-(t.t)):


>> t=-3:0.1:3;
>> a=sin(2*pi*t);
>> b=exp(-(t.*t));
>> y=a.*b;
>> plot(t,y)
>> grid

1) x(t-3)
>> t=-3:0.1:3;
>> a=sin(2*pi*(t-3));
>> b=exp(-((t-3).*(t-3)));
>> y=a.*b;
>> plot(t,y)
>> grid

2) x(t/3)
>> t=-3:0.1:3;
>> a=sin(2*pi*(t/3));
>> b=exp(-((t/3).*(t/3)));
>> y=a.*b;
>> plot(t,y)
>> grid

3) 3.x (3.t)
>> t=-3:0.1:3;
a=sin(2*pi*(t*3));
b=exp(-((t*3).*(t*3)));
y=3*(a.*b);
plot(t,y)
grid

You might also like