フィルターのクリア

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 Center および File ExchangeMatched 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