这是我的问题,我必须在这里遗漏一些东西。
const int nfft = 256 * 1024;
const float samplefrequency = 256.0 * 1024.0 ; // Hz
/* The buffer, spectral and data arrays for the FFT */
kiss_fft_cfg mybuff;
kiss_fft_cpx samples[nfft];
kiss_fft_cpx fftoutput[nfft];
/* The final, averaged spectrum */
double finalspec[nfft/2];
所以这是我的代码的一部分。
问题是我无法编译它,因为:“错误 C2057:表达式常量出席”第 16 行 - Kiss_fft_cpx samples[nfft]; “错误 C2057:需要常量表达式”
考虑到 nfft 是一个常数,我不明白有什么问题。
谢谢