You are on page 1of 1

% signal modulé AM:

n = 0:1200; m = 0.4;
fH = 0.1 ; fL = 0.01;
xH = sin(2*pi*fH*n);
xL = sin(2*pi*fL*n);
y = (1+m*xL).*xH;
subplot(211)
stem(n,y); grid ;
xlabel('Time index n');
ylabel('Amplitude');
subplot(212)
plot(n,y); grid ;

You might also like