|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectedu.mines.jtk.lapack.DMatrixChd
public class DMatrixChd
Cholesky decomposition of a symmetric positive-definite matrix A. For a symmetric positive-definite matrix a, the Cholesky decomposition is A = L*L', where L is a lower triangular matrix.
| Constructor Summary | |
|---|---|
DMatrixChd(DMatrix a)
Constructs a Cholesky decomposition of the specified matrix A. |
|
| Method Summary | |
|---|---|
double |
det()
Returns the determinant of the matrix A. |
DMatrix |
getL()
Gets the lower triangular factor L. |
boolean |
isPositiveDefinite()
Determines whether the matrix A is positive definite. |
DMatrix |
solve(DMatrix b)
Returns the solution X of the linear system A*X = B. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public DMatrixChd(DMatrix a)
a - the matrix.| Method Detail |
|---|
public boolean isPositiveDefinite()
public DMatrix getL()
public double det()
public DMatrix solve(DMatrix b)
b - the right-hand-side matrix B.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||