Cholesky |
Cholesky decomposition is a decomposition of a symmetric, positive-definite
matrix into a lower triangular matrix L and the transpose of the lower
triangular matrix such that A = L*L'.
|
DenseMatrix |
An abstract interface of dense matrix.
|
EVD |
Eigen decomposition of a real matrix.
|
JMatrix |
A pure Java implementation of DenseMatrix whose data is stored in a single 1D array of
doubles in column major order.
|
LU |
For an m-by-n matrix A with m ≥ n, the LU decomposition is an m-by-n
unit lower triangular matrix L, an n-by-n upper triangular matrix U,
and a permutation vector piv of length m so that A(piv,:) = L*U.
|
Matrix |
An abstract interface of matrix.
|
MatrixMultiplication |
Matrix multiplication interface.
|
QR |
For an m-by-n matrix A with m ≥ n, the QR decomposition is an m-by-n
orthogonal matrix Q and an n-by-n upper triangular matrix R such that
A = Q*R.
|
SVD |
Singular Value Decomposition.
|