operator - 对于参数类型未定义double []

时间:2015-10-27 10:16:35

标签: java matrix normalization jama

我正在开发一个处理大型数据矩阵的项目。当我尝试将其规范化以进行计算时,我得到了错误

operator - is undefined for argument types double[]

我的代码如下:

import Jama.*;

public static Matrix normalize(Matrix ip_matrix, double[][] min_bound, double[][] max_bound)
{
    Matrix mat = ip_matrix.transpose();
    double[][] mat1 = mat.getArray(); // getting matrix as an array to perfom the computation.
    int nb_input = mat1[0].length;
    double[][] norm = new double[mat1[0].length][mat1[1].length]; // Initialize a default array to store the output, in the required dimension.

    for (int i = 0; i <= nb_input; i++)
    {
        norm[i] = (mat1[i] - min_bound[i] / (max_bound[i] - min_bound[i])); //The line where i get the error.

    }
    norm = norm.getMatrix();
    return norm;
    }

我基本上是一个python程序员,同样的逻辑在我的python代码中工作正常。我在python中使用numpy。并且我在java中使用JAMA库。

我只是java的初学者,所以请任何指导都会受到高度评价。

1 个答案:

答案 0 :(得分:1)

您正在创建一个二维数组,即一个矩阵。在Java中,没有真正的2D数组。你在这里做的是创建一个由double s。

组成的数组

因此,当您使用[]运算符访问数组时,您实际上获得了double的一维数组。当您使用[][]访问它时,您会获得double。这就是你得到错误的原因。您使用单个[]来访问它,然后对它们进行减法。