我一直在寻找与此相关的其他线程,但不知何故我就是不明白......
我想对一组我评估过的值进行 FFT,并编写了这个程序来首先读取这些值并将它们保存到一个 size 的数组中n
。
int main () {
// some variables and also a bit of code to read the 'messwerte.txt'
printf("Geben sie an wieviele Messwerte ausgelesen werden sollen: ");
scanf("%d", &n);
double werte[n]; //Array der "fertigen" Messwerte
in = fopen ("messwerte.txt","r");
double nul[n]; //Array von nullen
int logN = 14;
l=FFT(logN,&werte,&nul);
}
在同一个文件中,我还借助该程序进行了 FFT:
double FFT (int logN, double *real, double *im) //logN is base 2 log(N) {
// blabla FFT calculation
}
但是,当我编译时,我总是会收到此错误:
gcc FFT.c -lm
FFT.c: In function ‘main’:
FFT.c:94:2: warning: passing argument 2 of ‘FFT’ from incompatible pointer type [enabled by default]
FFT.c:4:8: note: expected ‘double *’ but argument is of type ‘double (*)[(unsigned int)(n)]’
FFT.c:94:2: warning: passing argument 3 of ‘FFT’ from incompatible pointer type [enabled by default]
FFT.c:4:8: note: expected ‘double *’ but argument is of type ‘double (*)[(unsigned int)(n)]’
由于这是我第一次编程,我真的不知道我的代码有什么问题。我是否必须为编译器或类似的东西设置更多标志(因为我必须做这些-lm
东西,否则它不会编译并说诸如 pow not found 之类的东西)?
我还意识到在 Windows 或 Linux 机器上编写时可能会有所不同,如果这是操作系统的问题,我使用的是 Linux、Lubuntu 12.10 32 位。