Anda di halaman 1dari 2

Sea la funcin

y (t )= Acos ( 2 ft + ) , considerando la siguiente tabla y

realizando sus graficas


A

y (t )= Acos ( 2 ft + )

10

y 1=2 cos ( 2 ( 10 ) t )

y 2=2 cos ( 2 ( 1 ) t )

/2

y 3=cos ( 2 ( 2 ) t + /2 )

/2

y 4 =cos ( 2 ( 2 ) t /2 )

t=0:pi/1000:pi/5;
y1=2*cos(2*pi*10*t);
y2=2*cos(2*pi*1*t);
y3=cos((2*pi*2*t)+pi/2);
y4=cos((2*pi*2*t)-pi/2);
plot(t,y1,'-.',t,y2,'--',t,y3,'-',t,y4,':')
legend('y1','y2','y3','y4')

Sea la funcin

x ( n )= Acos ( 2 f n x )

x=0:pi/100:2*pi;
f1=31/60;
f2=30/60;
y1=cos(2*pi*f1*x);
y2=cos(2*pi*f2*x);
plot(x,y1,'o',x,y2,'-')
legend('f1','f2')

Anda mungkin juga menyukai