%% Grafica y(t)-Luis Pachon t=[-2,-1,0,1,1,2,2]; x=[0,2,2,2,-1,-1,0]; subplot(4,1,1) plot(t,x,'g') grid title('SEÑAL CONTINUA Y(t) Realizado por Luis Pachon') xlabel('tiempo') ylabel('amplitud') xlim([-5,2]) %% y(t)=-3x(t+3) % Paso 1 desplazamiento x(t-t0)-Luis Pachon t1=t-3; subplot(4,1,2) plot(t1,x,'r') grid title('SEÑAL CONTINUA DEZPLAZAMIENTO Realizado por Luis Pachon') xlabel('tiempo') ylabel('amplitud') xlim([-5,2]) %% Reflexion en el eje y x=x*-1; subplot(4,1,3) plot(t1,x,'b') grid title('SEÑAL REFLEXION EJE Y Realizado por Luis Pachon') xlabel('tiempo') ylabel('amplitud') xlim([-5,2])
%% Grafica s(t)-Luis Pachon t=[-2,-1,0,1,1,2,2]; x=[0,2,2,2,-1,-1,0]; subplot(4,1,1) plot(t,x,'g') grid title('SEÑAL CONTINUA Y(t) Realizado por Luis Pachon') xlabel('tiempo') ylabel('amplitud') xlim([-8,8]) %% s(t)=x(-6t-5) % Paso 1 desplazamiento x(t-t0)-Luis Pachon t1=t+5; subplot(4,1,2) plot(t1,x,'r') grid title('SEÑAL CONTINUA DEZPLAZAMIENTO Realizado por Luis Pachon') xlabel('tiempo') ylabel('amplitud') xlim([-8,8]) %% Reflexion t2=t1*-1;
subplot(4,1,3) plot(t2,x,'b') grid title('SEÑAL CONTINUA REFLEXION Realizado por Luis Pachon') xlabel('tiempo') ylabel('amplitud') xlim([-8,8]) %% compresion t3=t2/5; subplot(4,1,4) plot(t3,x,'b') grid title('SEÑAL CONTINUA COMPRESION Realizado por Luis Pachon') xlabel('tiempo') ylabel('amplitud') xlim([-8,8])