public class CholeskyDecomposition extends Object
| Constructor and Description |
|---|
CholeskyDecomposition(Matrix a) |
CholeskyDecomposition(Matrix a,
boolean pivot) |
| Modifier and Type | Method and Description |
|---|---|
int[] |
getInversePivot() |
Matrix |
getL() |
PivotedMatrix |
getPermutedL() |
int[] |
getPivot() |
boolean |
isPositiveDefinite() |
Matrix |
solveLeft(Matrix z)
Compute inv(L) * z efficiently.
|
Matrix |
solveRight(Matrix z)
Compute z * inv(L') efficiently
|
public CholeskyDecomposition(Matrix a)
public CholeskyDecomposition(Matrix a, boolean pivot)
public boolean isPositiveDefinite()
public Matrix getL()
public PivotedMatrix getPermutedL()
public int[] getPivot()
public int[] getInversePivot()
Copyright © 2008–2015 The Apache Software Foundation. All rights reserved.