필터 지우기
필터 지우기

Reflecting impulse response with respect to y-axis

조회 수: 3 (최근 30일)
Jimmy
Jimmy 2014년 10월 11일
댓글: Rick Rosson 2014년 10월 11일
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.

채택된 답변

Rick Rosson
Rick Rosson 2014년 10월 11일
편집: Rick Rosson 2014년 10월 11일
n = -3:0;
h = fliplr(Hn);
stem(n,h);
  댓글 수: 3
Jimmy
Jimmy 2014년 10월 11일
my second question is that how to apply time reversal convolution after reflecting the new impulse response?
Rick Rosson
Rick Rosson 2014년 10월 11일
Please post a new question so that more people will see it.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matched Filter and Ambiguity Function에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by