Está en la página 1de 3

NOMBRE: VIGUERAS ORTIZ MIGUEL ANGEL PRACTICA# 1 SEALES DE TIEMPO CONTINUO Y DISCRETO

GRUPO: 2MV2 FECHA: 28 de agosto de 2013

Objetivo: En esta prctica se conocer como pueden interactuar algebraicamente un par de funciones de tiempo continuo, as mismo se proporcionar las herramientas necesarias para poder capturar, interpretar y graficar una serie de funciones.

A continuacin se muestra el cdigo realizado durante la sesin de laboratorio:


subplot(3,3,3); i=1; for t=0:.001:10 if (t<3.33) F(i)=0; end if (t>=3.33) && (t<5) F(i)=(1/1.67)*t-(.5988*3.33); end if (t>=5) && (t<=6.66) F(i)=((1/1.66)*t)+(.5988*6.66)+0.03; end if (t>6.66) && (t<=10) F(i)=0; end T(i)=t; G(i)=sin(pi*t); i=i+1; end subplot(3,3,1); plot(T,F) title('f(t))'); % stem(T,F) t=-2:0.02:2; f1=sin(pi*t); subplot(3,3,2); plot(t,f1,'red--'); grid on; title('g(t))'); plot(t,f1+t); xlabel('t','FontSize',Tamanio); ylabel('fT(t)','FontSize',Tamanio); grid on; title('f(t)+g(t)'); subplot(3,3,4); plot(T,F) title('f(t))'); % stem(T,F) t=-2:0.02:2; f1=sin(pi*t); subplot(3,3,5); plot(t,f1,'red--'); grid on; title('g(t)'); subplot(3,3,6); plot(t,f1.*t); xlabel('t','FontSize',Tamanio); ylabel('fT(t)','FontSize',Tamanio); grid on; title('f(t)*g(t');

NOMBRE: VIGUERAS ORTIZ MIGUEL ANGEL PRACTICA# 1

GRUPO: 2MV2 FECHA: 28 de agosto de 2013

Graficas obtenidas con sus respectivas operaciones algebraicas:

Funciones continuas:

Funciones Discretas

NOMBRE: VIGUERAS ORTIZ MIGUEL ANGEL PRACTICA# 1 Operaciones con funciones discretas

GRUPO: 2MV2 FECHA: 28 de agosto de 2013

CONCLUSIONES: La prctica demostr que un par de graficas representativas de un par de funciones, pueden ser manipuladas algebraicamente para su interaccin, siempre y cuando pertenezcan al mismo espacio de las funciones del tiempo continuo o discreto . Y para que las funciones puedan ser multiplicadas punto por punto es necesario agregar un punto antes del signo de multiplicacin .* , de este modo la grfica queda mejor definida.

También podría gustarte