我正在使用 Math MAhout 类 DoubleMatrix2d 创建一个 3x4 矩阵,我写了这样的东西开始:
package org.apache.mahout.math.matrix.impl;
import org.apache.mahout.math.function.BinaryFunction;
public class creaMatrice extends DenseDoubleMatrix2D {
public static void main(String args[]){
double array[][]= { {1,2}, {4,8}, {5,0}, {4,5}, {2,9}, {1,5}, {9,0}, {2,6} };
//creo una nuova matrice vuota
DoubleMatrix2D matrice;
matrice = new DenseDoubleMatrix2D(3,4);//creo una 3x4
matrice = matrice.assign(double array[][]);
int prova = matrice.getQuick(2,3);
System.out.println(prova);
}
}
我收到有关编译的错误,但我需要知道的第一件事是这样做是否正确:) 谢谢!