public class CholeskyDecompositionMTJ extends AbstractCloneableSerializable
Modifier and Type | Method and Description |
---|---|
static CholeskyDecompositionMTJ |
create(DenseMatrix A)
Creates a Cholesky decomposition of the symmetric positive definite
matrix A.
|
DenseMatrix |
getR()
Getter for R
|
void |
setR(DenseMatrix R)
Setter for R
|
clone
public static CholeskyDecompositionMTJ create(DenseMatrix A)
A
- Symmetric positive definite matrix A to decomposepublic DenseMatrix getR()
public void setR(DenseMatrix R)
R
- Cholesky factor, such that R.transpose().times( R ) equals the original
matrix