Vous êtes sur la page 1sur 1

Génération et échantillonnage des signaux en Matlab

figure(1)
fmax=100
t=0:1/fmax:128/fmax;
m=sin(200*pi*t1);
t1=0:1/(2*fmax):128/(2*fmax);
m1=sin(200*pi*t1);
t2=0:1/(2.5*fmax):128/(2.5*fmax);
m2=sin(200*pi*t2);
t3=0:1/(3*fmax):128/(3*fmax);
m3=sin(200*pi*t3);
subplot(4,1,1),plot(t,m)
subplot(4,1,2),plot(t1,m1)
subplot(4,1,3),plot(t2,m2)
subplot(4,1,4),plot(t3,m3)

-2-

Vous aimerez peut-être aussi