我正在尝试将 FFT(FFT的 this rosettacode.org C++ 实现: void fft(CArray &x) { ... }
,还是我应该使用C 实现?)应用于此数据给出的数组:
float *x
VstInt32 sampleFrames // basically the length of the array
当我做:
fft(x);
我得到:
error C2664: 'void fft(CArray &)' : cannot convert argument 1 from 'float *' to 'CArray &'
如何解决这种错误?