public class LUDecomposition extends Object implements Serializable
The LU decomposition with pivoting always exists, even if the matrix is singular, so the constructor will never fail. The primary use of the LU decomposition is in the solution of square systems of simultaneous linear equations. This will fail if isNonsingular() returns false.
Constructor and Description |
---|
LUDecomposition(DoubleMatrix2D A)
Constructs and returns a new LU Decomposition object;
The decomposed matrices can be retrieved via instance methods of the returned decomposition object.
|
Modifier and Type | Method and Description |
---|---|
double |
det()
Returns the determinant, det(A).
|
DoubleMatrix2D |
getL()
Returns the lower triangular factor, L.
|
int[] |
getPivot()
Returns a copy of the pivot permutation vector.
|
DoubleMatrix2D |
getU()
Returns the upper triangular factor, U.
|
boolean |
isNonsingular()
Returns whether the matrix is nonsingular (has an inverse).
|
DoubleMatrix2D |
solve(DoubleMatrix2D B)
Solves A*X = B.
|
String |
toString()
Returns a String with (propertyName, propertyValue) pairs.
|
public LUDecomposition(DoubleMatrix2D A)
A
- Rectangular matrixpublic double det()
IllegalArgumentException
- Matrix must be squarepublic DoubleMatrix2D getL()
public int[] getPivot()
public DoubleMatrix2D getU()
public boolean isNonsingular()
public DoubleMatrix2D solve(DoubleMatrix2D B)
B
- A matrix with as many rows as A and any number of columns.IllegalArgumentException
- if B.rows() != A.rows().IllegalArgumentException
- if A is singular, that is, if !this.isNonsingular().IllegalArgumentException
- if A.rows() < A.columns().Jas4pp 1.5 © Java Analysis Studio for Particle Physics