IFFT operation on the vector
2 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I want to make an ifft operation on some vector. according to help of ifft, it do not require any multipcation constant. does this statement true all the time?
0 件のコメント
採用された回答
Wayne King
2013 年 2 月 21 日
編集済み: Wayne King
2013 年 2 月 21 日
As long as you do not zero pad, you should get back the original vector without using any scaling factor.
x = randn(10,1);
xdft = fft(x);
y = ifft(xdft);
max(abs(x-y))
0 件のコメント
その他の回答 (1 件)
Michael Adelman
2013 年 2 月 21 日
1 件のコメント
Wayne King
2013 年 2 月 21 日
Nothing, it will just add zeros at the end.
x = randn(10,1);
xdft = fft(x,16);
ifft(xdft)
参考
カテゴリ
Help Center および File Exchange で Spectral Measurements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!