Uses of Class
org.apache.commons.math.linear.NonSquareMatrixException
-
Packages that use NonSquareMatrixException Package Description org.apache.commons.math.linear Linear algebra support. -
-
Uses of NonSquareMatrixException in org.apache.commons.math.linear
Methods in org.apache.commons.math.linear that throw NonSquareMatrixException Modifier and Type Method Description T
AbstractFieldMatrix. getTrace()
Returns the trace of the matrix (the sum of the elements on the main diagonal).double
AbstractRealMatrix. getTrace()
Returns the trace of the matrix (the sum of the elements on the main diagonal).T
FieldMatrix. getTrace()
Returns the trace of the matrix (the sum of the elements on the main diagonal).double
RealMatrix. getTrace()
Returns the trace of the matrix (the sum of the elements on the main diagonal).Constructors in org.apache.commons.math.linear that throw NonSquareMatrixException Constructor Description CholeskyDecompositionImpl(RealMatrix matrix)
Calculates the Cholesky decomposition of the given matrix.CholeskyDecompositionImpl(RealMatrix matrix, double relativeSymmetryThreshold, double absolutePositivityThreshold)
Calculates the Cholesky decomposition of the given matrix.FieldLUDecompositionImpl(FieldMatrix<T> matrix)
Calculates the LU-decomposition of the given matrix.LUDecompositionImpl(RealMatrix matrix, double singularityThreshold)
Calculates the LU-decomposition of the given matrix.
-