|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
public interface LUDecomposition
All LU decomposition algorithms implement this interface.
| Method Summary | |
|---|---|
LowerTriangularMatrix |
L()
Get a copy of the lower triangular matrix L as in
P %*% A == L %*% U |
PermutationMatrix |
P()
Get a copy of the permutation matrix P as in
P %*% A == L %*% U |
UpperTriangularMatrix |
U()
Get a copy of the upper triangular matrix U as in
P %*% A == L %*% U |
| Method Detail |
|---|
LowerTriangularMatrix L()
L as in
P %*% A == L %*% U
LUpperTriangularMatrix U()
U as in
P %*% A == L %*% U
UPermutationMatrix P()
P as in
P %*% A == L %*% U
P
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||