Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

clear all

clc

Fs = 80000;
dt= 1/Fs;
t = (-0.5:dt:0.5);

x=0.8*sin(pi*100*t)+0.2*sin(pi*240*t);
plot(t,x)

clear all
clc
%g�neration d'un signal
n=512;
Fe=3000;
te=1/Fe;
t=(0:n-1)*te;
y=sin(10*pi*t);
plot(t,y);grid

You might also like