public static class DenseMatrix.LU
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
Matrix |
L
The lower triangular matrix resulting from the factorization.
|
java.util.List<java.lang.Integer> |
P
The 0-based list of row swaps used in the factorization.
|
Matrix |
U
The upper triangular matrix resulting from the factorization.
|
Modifier and Type | Method and Description |
---|---|
Matrix |
getPivotMatrix()
Helper method converts P into a pivot matrix that can pre-multiply
L*U.
|
public java.util.List<java.lang.Integer> P
public Matrix L
public Matrix U
public Matrix getPivotMatrix()