Apply FFT to a both channels of a stereo signal separately?
问题 I'm reading a wave-file and would like to apply the fast fourier transformation to it. However I've got a stereo signal and I'm wondering what to do with the left and right channel. Does the FFT need to be applied to both channels separately? 回答1: Yes and no. Certainly the FFT of each channel is independent, so you want separate FFTs for each of them. However, it is possible to compute two FFTs of real data using one call to a routine for FFTs of complex data and some additional arithmetic.