Está en la página 1de 21

F
ACU
LTAD DE INGENIERÍA

ELECTRÓNICA E INFORMÁTICA
 ESTUDIANTE: Vilcapaza Barahona Paul Marthy
Caceres Villa Franklin
Ancieta Livia Cristian
Carhuacusma Vela Jhosep Alejandro
Villanueva Laurente Cristopher
 ASIGNATURA: Procesamiento Digital de Señales
 DOCENTE: Ing.Fernando Hidalgo
 TEMA: Señales -ejercicios

LIMA-PERÚ
2023
LABORATORIO N°1 2023
PREPARADO: ING. ACOSTA SOLORZANO WILLIAMS
1.- Impulso continuo y discretos
a) Enuncie la propiedad de extracción de la delta de Dirác

b) Evalué las siguientes integrales usando propiedades de la delta de Dirac.


Comandos en MATLAB:
Gráfico en MATLAB:

Comandos en MATLAB:

Gráfico en MATLAB:
Comandos en MATLAB:

Gráfico en MATLAB:

Comandos en MATLAB:

Gráfico en MATLAB:
Comandos en MATLAB:

Gráfico en MATLAB:

Comandos en MATLAB:

Gráfico en MATLAB:
Comandos en MATLAB:

Gráfico en MATLAB:

Comandos en MATLAB:

Gráfico en MATLAB:
Comandos en MATLAB:

Gráfico en MATLAB:
SECCION 3 : MANEJO DE SEÑALES
VIC Y VID

EJERCICIO A:

EJERCICIO B:
EJERCICIO C :
EJERCICIO D :

EJERCICIO E :

EJERCICIO F:
EJERCICIO G:

EJERCICIO H:

EJERCICIO I:
EJERCICIO J :

EJERCICIO K :
EJERCICO L :
EJERCICIO #4 USANDO
MATLAB
ENERGIA Y POTENCIA
INTRODUCCION A LAS SEÑALES
ALEATORIAS
r1 = randn(1, 1000);
r2 = randn(1, 1000);

% Subplot 1: Gráfico de r1
subplot(2, 2, 1);
plot(r1);axis([0, 1000, -4, 4]);
title('Gráfico de r1');

% Subplot 2: Gráfico de r2
subplot(2, 2, 2);
plot(r2);axis([0, 1000, -4, 4]);
title('Gráfico de r2');

% Subplot 3: Histograma de r1
subplot(2, 2, 3);
hist(r1, 10);
title('Histograma de r1');

% Subplot 4: Histograma de r2
subplot(2, 2, 4);
hist(r2, 10);
title('Histograma de r2');

JUGUEMOS CON LAS SEÑALES


VOZ DE HOMBRE

SEÑAL NO INVERTIDA E INVERTIDA

[y fs ]=audioread('hola.m4a');

>> b=length(y);
>> tiempo=0:1/fs:(b-1)/fs;

>> plot(tiempo,y)

>> sound(y,fs)

>> for i=1:b

y1 (i)=y(b-i+1);

end

>> sound(y,fs)

>> pause(1)

>> sound(y1,fs)

>> subplot(2,1,1)

>> plot(tiempo,y)

>> title('señal no invertida')

>> subplot(2,1,2)

>> plot(tiempo,y1)

>> title('señal invertida')

VOZ DE MUJER

SEÑAL NO INVERTIDA E INVERTIDA

[y fs ]=audioread('hola2.ogg');

>> b=length(y);

>> tiempo=0:1/fs:(b-1)/fs;

>> plot(tiempo,y)
>> sound(y,fs)

>> for i=1:b

y1 (i)=y(b-i+1);

end

>> sound(y,fs)

>> pause(1)

>> sound(y1,fs)

>> subplot(2,1,1)

>> plot(tiempo,y)

>> title('señal no invertida')

>> subplot(2,1,2)

>> plot(tiempo,y1)

>> title('señal invertida')

También podría gustarte