Reflecting impulse response with respect to y-axis
    6 views (last 30 days)
  
       Show older comments
    
Greetings, I have a discrete-time signal at the +x-axis. I'm having a problem to reflect the signal with respect to the y-axis so that my signal is located at the -x-axis.
Example, I have a impulse response of Hn=[4 2 1 0.5] which means h[0]=4, h[1]=2, h[3]=1 and h[4]=0.5. So i would like to reflect the impulse response with respect to the y-axis so that the response will be h[-3]=0.5, h[-2]=1, h[-1]=2 and h[0]=4.
0 Comments
Accepted Answer
  Rick Rosson
    
 on 11 Oct 2014
        
      Edited: Rick Rosson
    
 on 11 Oct 2014
  
      n = -3:0;
h = fliplr(Hn);
stem(n,h);
3 Comments
More Answers (0)
See Also
Categories
				Find more on Digital Filter Analysis in Help Center and File Exchange
			
	Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
