Transcript
Page 1: Practica 1 Comunicaciones Analógicas

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

Page 2: Practica 1 Comunicaciones Analógicas

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

Page 3: Practica 1 Comunicaciones Analógicas

RUIZ POSADAS GUILLERMO ALBERTOGRUPO:5CM11


Top Related