KissFFT (kiss_fftr to kiss_fftri) - How to reconstruct the original signal?
问题 I'm having some trouble understanding how to use KissFFT (1.2.9) correctly. All I am trying to achieve for now is to perform an FFT and then immediately perform an iFFT to reconstruct the original signal again. The code snippet below demonstrates what I'm doing: void test(short* timeDomainData, int length) { // Create the configurations for FFT and iFFT... kiss_fftr_cfg fftConfiguration = kiss_fftr_alloc( length, 0, NULL, NULL ); kiss_fftr_cfg ifftConfiguration = kiss_fftr_alloc( length, 1,