hermitian symmetry in IFFT !
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi all. I have a matrix as a 2D spectrum. now, I want to transform it to time domain. when I use IFFT, the results are complex numbers, but it should be real numbers! so I have to have hermitain symmetry. how can i do that?
3 comentarios
Walter Roberson
el 9 de Sept. de 2013
Can you create a small example?
Are you doing anything between the fft and ifft ?
Respuestas (2)
Honglei Chen
el 9 de Sept. de 2013
If it is some small imaginary part due to numerical precisions, you can probably preprocess your input to IFFT by doing
x = (x+x')/2
This makes x Hermitian
0 comentarios
Jakob Ameres
el 24 de Mayo de 2016
Use the symmetric flag for the ifft.
ifft( data, [], dim, 'symmetric')
0 comentarios
Ver también
Categorías
Más información sobre Transforms en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!