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 comentarios

Wayne King
Wayne King el 30 de En. de 2013
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 el 30 de En. de 2013
Editada: Matt J el 30 de En. de 2013
Incidentally, bsxfun would be more efficient
X(2:N,:) = bsxfun(@times, X(1,:), Phase_Rot);
x = ifft(X,[],2);

Iniciar sesión para comentar.

Respuestas (0)

Categorías

Más información sobre Data Type Conversion en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 30 de En. de 2013

Community Treasure Hunt

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

Start Hunting!

Translated by