Aliaga Hito 2 1

UNIVERSIDAD CATÓLICA DE SANTA MARÍA ESCUELA PROFESIONAL DE INGENIERÍA ELECTRÓNICA CÓDIGO : ASIGNATURA : PROCESAMIENTO

Views 141 Downloads 2 File size 310KB

Report DMCA / Copyright

DOWNLOAD FILE

Recommend stories

Citation preview

UNIVERSIDAD CATÓLICA DE SANTA MARÍA ESCUELA PROFESIONAL DE INGENIERÍA ELECTRÓNICA CÓDIGO

:

ASIGNATURA

: PROCESAMIENTO DIGITAL DE SEÑALES

PRIMERA FASE Respuesta De Sistemas LTI - Convolución Alumno

ALIAGA HITO OSCAR

Grupo

03

I.

II.

GUÍA DE LABORATORIO NO 02 Docente (s): Ing. Henry Christian Zegarra Gago.

Fecha: 2019.04.01.

OBJETIVOS 

Implementar el muestreo con diferentes frecuencias de muestreo



Obtener periodo, módulo y fase de diferentes señales

ACTIVIDADES

1. Sea: function [s,n,modulo,fase]=gensen(n0,n1,r,phi); n=n0:n1; x=exp(j*(r*n+phi)); subplot(3,1,1) stem(n,x,'r') xlabel('n') ylabel('x[n]') title('Grafica Exponencial') legend('Grafica roja->Exponencial Grafica verde->modulo Grafica azul->fase') grid on [modulo]=abs(x') [fase]=angle(x') subplot(3,1,2) stem(n,modulo,'g') xlabel('n') ylabel('modulo[n]') title('Modulo') grid on subplot(3,1,3) stem(n,fase) xlabel('n') ylabel('fase[n]') title('Fase') grid on

Commented [APIE1]:

x1=[-1,0,1,7,-1,2,3,-4]; x1n=[-3,-2,-1,0,1,2,3,4]; stem(x1n,x1,'r') grid on xlabel('x1'); ylabel('x1[n]'); title('Respuesta impulso de secuencia');

x2=[2,1,5,-1,-2,5,1,3,2]; x2n=[-2,-1,0,1,2,3,4,5,6]; stem(x1n,x1,'r') grid on xlabel('x2'); ylabel('x2[n]'); title('Respuesta impulso de secuencia');

1.1 Escriba un programa en MATLAB, para representar en forma gráfica y en forma tabulada cada señal. 1.2 Calcular y graficar

3.

Recomendación: Use conv.