hermitian symmetry in IFFT !
조회 수: 7 (최근 30일)
이전 댓글 표시
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
Walter Roberson
2013년 9월 9일
Can you create a small example?
Are you doing anything between the fft and ifft ?
답변 (2개)
Honglei Chen
2013년 9월 9일
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
Jakob Ameres
2016년 5월 24일
Use the symmetric flag for the ifft.
ifft( data, [], dim, 'symmetric')
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Transforms에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!