Está en la página 1de 4

UNIVERSIDAD POLTECNICA SALESIANA

FACULTAD DE INGENIERIAS
INGENIERIA ELECTRICA

SEALES Y SISTEMAS

ALUMNO: Carlos De La Bastida
SEMESTRE: 5to
TRBAJO EN CLASE: Seales continuas y discretas

1. Generar un subplot con las 6 seales continuas y discretas
A continuacin el cdigo en MATLAB
%SEALES DISCRETAS Y SEALES CONTINUAS
x1=sin(((2*pi)/12)*t)
x2=sin(((8*pi)/31)*t)
x3=sin((1/2)*t)
subplot(6,2,1)
plot(t,x1,'y')
subplot(6,2,2)
stem(t,x1,'blue')
subplot(6,2,3)
plot(t,x2,'b')
subplot(6,2,4)
stem(t,x2,'-g')
subplot(6,2,5)
plot(t,x3,'red')
subplot(6,2,6)
stem(t,x3,'b')








2. Obtener el periodo minimo de repeticion de las 6 seales
Sea
To= 2*pi/Wo
Entonces
a) X1[n]= sen(((2*pi)/12)*n)



b) X2[n]= sen(((8*pi)/31)*n)



c) X3[n]= sen((1/2)*n)




d) X1(t)= sen(((2*pi)/12)*t)




e) X2(t)= sen(((8*pi)/31)*t)


/4

f) X3(t)= sen((1/2)*t)




3. Cul es el periodo x1-x2-x3
X[n]= sen(((2*pi)/12)*n)+ sen(((8*pi)/31)*n)+ sen((1/2)*n)
T1/T2=

También podría gustarte