我想做矩阵计算'在android中
这是Matrix.java
`public Matrix(int column, int row, double[][] element){
this.column_ = column;
this.row_ = row;
this.element_ = element;
}`
和Mainactivity.java
double [][] eq_1 = {
{1,2,3},
{4,5,6},
{7,8,9}
};
Matrix first = new Matrix(3,3,eq_1);
我想做的是
矩阵 - >阵列
double array[][] = first.Matrix2array();
所以我添加这个
public double[][] Matrix2array(){
a = this.element_;
return a;
}
但它不起作用
我是初学者,所以我对Java不了解
请帮帮我