How do I plot the impulse response from this equation?
    6 visualizaciones (últimos 30 días)
  
       Mostrar comentarios más antiguos
    
    Niamh Mc Devitt
 el 24 de Oct. de 2013
  
    
    
    
    
    Editada: Youssef  Khmou
      
 el 24 de Oct. de 2013
            I have been given an exercise to plot this equation h = h[1] = 1, h[2] = 3, h[3] = -2, h[4] = 9, h[5] = 7; I am very new to Matlab and I am confused as to whether I have to define some of the variables or simply just insert the equation? Sorry I cannot provide much more information I am a Matlab novice.
0 comentarios
Respuesta aceptada
  Jan
      
 el 24 de Oct. de 2013
        Maybe you want to do something like:
 h = [1, 3, -2, 9, 7]; 
 ft_h = fft( h ); 
 ft_h = sqrt( ft_h .* conj( ft_h ) );
 plot( ft_h );
0 comentarios
Más respuestas (1)
  Youssef  Khmou
      
 el 24 de Oct. de 2013
        
      Editada: Youssef  Khmou
      
 el 24 de Oct. de 2013
  
      try :
 n=500;
 [g,w]=freqz(h,n);
  figure,plot(w,(abs(g)))
0 comentarios
Ver también
Categorías
				Más información sobre Labels and Styling en Help Center y File Exchange.
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


