Está en la página 1de 3

Grficas de seales contnuas

T=0.001;
t=[-2*pi:T:2*pi];
xt1=3*cos(-t);
xt2=4*exp(-3*(t+1));
xt3=2*sin(t+pi);
xt4=2*cos(10*t+1)-sin(4*t+1);
subplot(2,2,1);plot(t,xt1,'black');
subplot(2,2,2);plot(t,xt2,'red');
subplot(2,2,3);plot(t,xt3,'blue');
subplot(2,2,4);plot(t,xt4,'green');

Seales discretas

n=[0:20]
xn1=3*cos(n-1);
xn2=1.2*exp(n);
xn3=-2*sin(n-3)+cos(2*n-1);
xn4= -10*exp(pi*n-3);
subplot(2,2,1);stem(n,xn1,'green')
subplot(2,2,2);stem(n,xn2,'blue')
subplot(2,2,3);stem(n,xn3,'black')
subplot(2,2,4);stem(n,xn4,'red')

SEALES Y SISTEMAS
TAREA
SALAZAR PABLO
NIVEL: CUARTO
CARRERA:
ELECTRNICA

También podría gustarte