错误:无效操作数到二进制*(有'double'和'double *')

时间:2018-05-15 19:55:41

标签: c

我在此代码中出错:

mat mat_y(mat b, mat l, int n) {
    mat c = c = mat_new(n);
    for(i=0; i<n; i++)
    {
        c[i]=b[i];
        for(j=0; j<i; j++)
        {
            c[i] -= l[i][j] * c[j];
        }
    }
    return c;
}

错误:

  

二进制*的无效操作数(具有'double'和'double *')

以下是一些信息:

typedef double **mat;
int i,j,k;
void mat_zero(mat x, int n) {
    for (i = 0; i < n; i++) 
        for (j = 0; j < n; j++)
            x[i][j] = 0;
}


mat mat_new(int n) {
    mat x = malloc(sizeof(double*) * n);
    x[0] = malloc(sizeof(double) * n * n);

    for (i = 0; i < n; i++)
        x[i] = x[0] + n * i;
    mat_zero(x, n);

    return x;
}

1 个答案:

答案 0 :(得分:1)

二元运算符*不能将指针与double相乘。从您的代码中可以看出,虽然您实际上并没有尝试乘以指针但却错误地访问了双指针。

c[i] -= l[i][j] * c[j];

因此对于像double**这样的指针,它意味着指向指针的指针。如果只访问一次,如c[i],则取消引用外部指针,从而产生指向double的指针。您需要取消引用double**两次才能访问其中的浮点数。