Matlab

  • Uploaded by: Beto Pachon Gomez
  • 0
  • 0
  • August 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Matlab as PDF for free.

More details

  • Words: 60
  • Pages: 2
%% Grafica x[n]-Luis Pachon Xn=[-1,3,2,3,5,3]; %x[n]=[-1,3,2,3,5,3] n=[-2,-1,0,1,2,3]; %eje temporal n subplot(3,1,1) stem(n,Xn,'m') grid title('SEÑAL DISCRETA x[n] Realizado por Luis Pachon') xlabel('n') ylabel('amplitud') xlim([-8,8]) %% Grafica h[n]-Luis Pachon Hn=[2.5,5,0.5]; %h[n]=[2.5,5,0.5]; subplot(3,1,2) stem(n,Hn,'r') grid title('SEÑAL DISCRETA h[n] - Luis Pachon') xlabel('n') ylabel('amplitud') xlim([-8,8]) %% Convolución discreta x[n]*h[n] -Luis Pachon ConDis=conv(Xn,Hn); ncon=(-2:1:6); subplot(3,1,3) stem(ncon,ConDis,'b') grid title('Convolucion discreta x[n]*h[n]- Luis Pachon') xlabel('n') ylabel('amplitud') xlim([-8,8])

Related Documents

Matlab
July 2020 24
Matlab
May 2020 31
Matlab
April 2020 36
Matlab
May 2020 39
Matlab
August 2019 56
Matlab
November 2019 32

More Documents from ""

August 2019 39
August 2019 43
Matlab
August 2019 56
October 2019 60
Manual.pdf
July 2020 26