practica 1 comunicaciones analógicas

Post on 04-Jan-2016

13 Views

Category:

Documents

0 Downloads

Preview:

Click to see full reader

DESCRIPTION

matlab

TRANSCRIPT

DESARROLLO PRÁCTICO

Grafica del seno

t=0:(2*pi/500):2*pi;

y=sin(t)

plot(t,y)

title('Grafica del seno de t')

xlabel('Tiempo')

ylabel('f(t)')

grid

Grafica del seno modificado

t=0:(2*pi/500):2*pi;

y=sin(t*10)

plot(t,y)

title('Grafica del seno modificado de t')

xlabel('Tiempo')

ylabel('f(t)')

grid

RUIZ POSADAS GUILLERMO ALBERTOGRUPO:5CM11

Grafica del coseno

t=0:(2*pi/500):2*pi;

y=cos(t)

plot(t,y)

title('Grafica del coseno de t')

xlabel('Tiempo')

ylabel('f(t)')

grid

Grafica del coseno modificado

t=0:(2*pi/500):2*pi;

y=cos(10*t)

plot(t,y)

title('Grafica del coseno modificado de t')

xlabel('Tiempo')

ylabel('f(t)')

grid

RUIZ POSADAS GUILLERMO ALBERTOGRUPO:5CM11

RUIZ POSADAS GUILLERMO ALBERTOGRUPO:5CM11

top related