我正在尝试应用FFT(this rosettacode.org C++ implementation of FFT:void fft(CArray &x) { ... }
,或者我应该将C implementation?)应用于此数据给出的数组:
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 &'
如何解决这类错误?
答案 0 :(得分:1)