我不熟悉将 Jama 用于矩阵。我的问题是当我使用它给出det()
的方法(与LUDecomposition
类有关)时"Matrix must be square"
。好的,我的矩阵是三角形的,但LUDecomposition
它应该给我方矩阵。我的代码是这样的
public double findDeterminant(Matrix mtrx) {
LUDecomposition dec = new LUDecomposition(mtrx);
det = dec.det();
return det;
}