调用函数 DSP_fft32x32(fft_corr, n, x_in, x_out);后,发现x_in中的数据发生了变换,这是由什么引起的啊,怎么修正。
This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
调用函数 DSP_fft32x32(fft_corr, n, x_in, x_out);后,发现x_in中的数据发生了变换,这是由什么引起的啊,怎么修正。
x_in会作为草稿区进行计算,不用修正,如果你需要保存原有数据应该在做FFT之前另存一份。
那我实际输入的x_in不会带入DSP_fft32x32的x_in中进行运算,而是变换之后的x_in带入函数进行计算吗?