加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

警告:从不兼容的指针类型传递参数[默认启用]

发布时间:2020-12-16 05:20:13 所属栏目:百科 来源:网络整理
导读:我一直在寻找其他线程与某些有关的,但不知何故,我只是不明白… 我想对我已经评估的一组值做一些FFT,并写这个程序来首先读取值并将它们保存到大小为n的数组. int main () { // some variables and also a bit of code to read the 'messwerte.txt'printf("Geb
我一直在寻找其他线程与某些有关的,但不知何故,我只是不明白…

我想对我已经评估的一组值做一些FFT,并写这个程序来首先读取值并将它们保存到大小为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没有找到的东西)?

此外,我知道在Windows或Linux机器上编写时可能会有所区别,如果是操作系统的问题,我使用的是Linux,Lubuntu 12.10 32位.

解决方法

werte []和nul []是数组,但werte本身就是数组的第一个元素的地址.所以当你做& werte你试图传递一个地址的地址(如@cnicutar指出,这应该实际上读取指向一个N个元素的数组). SO只是通过werte和nul没有符号标志来传递这些数组的地址.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读