IFFT equation in matlab

Dear all, Let say i have this
X(2:N,:) = repmat(X(1,:),N-1,1).*Phase_Rot;                            
x = ifft(X,[],2);                                                    
My question is how can i convert the second line command into ifft equation?

2 件のコメント

Wayne King
Wayne King 2013 年 1 月 30 日
I'm not sure what you are trying to do here, are you trying to represent the inverse DFT as a matrix operation, where you multiply a Nx1 vector of DFT values to invert the transform?
Matt J
Matt J 2013 年 1 月 30 日
編集済み: Matt J 2013 年 1 月 30 日
Incidentally, bsxfun would be more efficient
X(2:N,:) = bsxfun(@times, X(1,:), Phase_Rot);
x = ifft(X,[],2);

サインインしてコメントする。

回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeTime and Frequency Domain Analysis についてさらに検索

タグ

質問済み:

2013 年 1 月 30 日

Community Treasure Hunt

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

Start Hunting!

Translated by