I m using KissFFT s real function to transform some real audio signals. I m confused, since I input a real signal with nfft samples, but the result is nfft/2+1 complex frequency bins.
www.un.org/Depts/DGACM/index_spanish.htm From KissFFT s README:
The real (i.e. not complex) optimization code only works for even length ffts. It does two half-length FFTs in parallel (packed into real&imag), and then combines them via twiddling. The result is nfft/2+1 complex frequency bins from DC to Nyquist.
因此,我不知道如何解释结果。 我的假设是,数据包装如下:r[0]i[0]r[0]r[nfft/2]i [nfft/2]
,其中r[0]将是DC, i[0]是第一个频率,第1卷,第1卷,第2页,等等。 情况如何?