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 个评论

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?
Incidentally, bsxfun would be more efficient
X(2:N,:) = bsxfun(@times, X(1,:), Phase_Rot);
x = ifft(X,[],2);

请先登录,再进行评论。

回答(0 个)

类别

帮助中心File Exchange 中查找有关 Data Type Conversion 的更多信息

标签

提问:

2013-1-30

Community Treasure Hunt

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

Start Hunting!

Translated by