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 Exchange에서 Time 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