Java org.apache.commons.math3.linear LUDecomposition fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.math3.linear LUDecomposition fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.math3.linear LUDecomposition.

The text is from its open source code.

Constructor

LUDecomposition(RealMatrix matrix)
Calculates the LU-decomposition of the given matrix.
LUDecomposition(RealMatrix matrix, double singularityThreshold)
Calculates the LU-decomposition of the given matrix.

Method

doublegetDeterminant()
Return the determinant of the matrix
RealMatrixgetL()
Returns the matrix L of the decomposition.
RealMatrixgetP()
Returns the P rows permutation matrix.
int[]getPivot()
Returns the pivot permutation vector.
DecompositionSolvergetSolver()
Get a solver for finding the A × X = B solution in exact linear sense.
RealMatrixgetU()
Returns the matrix U of the decomposition.