|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.udo.cs.myRVM.Util.SECholeskyDecomposition
public class SECholeskyDecomposition
A modified cholesky factorization. Given a n x n matrix A this decomposition produces a matrix L, such that L * L' = A + E, with E being a minimal diagonal matrix making the sum of both matrices positive definite (and regular). In contrast to the standard cholesky decomposition (as implemented in e.g. Jama) the matrix A doesn't have to be regular and positive definite as often happens due to numerical instabilities. The determination of the diagonal elements of E is based on Gerschgorin's circle theorem minimizing ||E||_inf. The a-priori upper bound of ||E||_inf is linear in n; REFERENCES: Robert B. Schnabel and Elizabeth Eskow. 1990. "A New Modified Cholesky Factorization," SIAM Journal of Scientific Statistical Computating, 11, 6: 1136-58. Robert B. Schnabel and Elizabeth Eskow. 1999. "A revised modified Cholesky factorization algorithm," SIAM J. Optim., 9, 4: 1135--1148 (electronic) Jeff Gill and Gary King. 1998. "`Hessian not Invertable.' Help!" manuscript in progress, Harvard University.
Nested Class Summary | |
---|---|
private class |
SECholeskyDecomposition.PivotTransform
Data structures needed for the recording of the pivot transformations. |
Field Summary | |
---|---|
private double |
detL
|
private Jama.Matrix |
E
|
private double[] |
E_Diagonal
|
private double |
ENorm
|
private Jama.Matrix |
L
The L-factor (lower triangle matrix) of matrix factorization calculated in decompose(). |
private int |
n
|
private java.util.LinkedList<SECholeskyDecomposition.PivotTransform> |
pivotTransformQueue
|
private Jama.Matrix |
PTR
The matrix used to reverse the pivot-transformations used in decompose() to construct L (PTR = Pivot Transform Reverse): PTR * (L * L') * PTR' = A + E. |
Constructor Summary | |
---|---|
SECholeskyDecomposition(double[][] A)
Constructors. |
|
SECholeskyDecomposition(Jama.Matrix A)
|
Method Summary | |
---|---|
private void |
buildPTR()
Build the Pivot-Transform-Reverse matrix PTR. |
private void |
decompose(Jama.Matrix MA_orig)
Do the hard work. |
double |
getDetA()
Return the determinant of A. |
double |
getDetL()
Return the determinant of L. |
double[] |
getE_Diagonal()
Return the diagonal of error-matrix E with the pivoting still applied. |
Jama.Matrix |
getE()
Return the error-matrix E with pivoting reversed. |
double |
getENorm()
Return the infinity norm of matrix E. |
Jama.Matrix |
getL()
Return the lower triangle matrix factor of the cholesky decomposition. |
Jama.Matrix |
getPTR()
Return the matrix PTR with PTR * (L * L') * PTR' = A + E. |
private void |
swapRowsAndColumns(double[][] A,
int i,
int j,
boolean isSymmetric,
int offset)
Swap rows i<->j and columns i<->j.->-> |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
private Jama.Matrix L
private Jama.Matrix PTR
private java.util.LinkedList<SECholeskyDecomposition.PivotTransform> pivotTransformQueue
private Jama.Matrix E
private double[] E_Diagonal
private double ENorm
private double detL
private int n
Constructor Detail |
---|
public SECholeskyDecomposition(double[][] A)
A
- public SECholeskyDecomposition(Jama.Matrix A)
Method Detail |
---|
private void swapRowsAndColumns(double[][] A, int i, int j, boolean isSymmetric, int offset)
A
- i
- j
- private void decompose(Jama.Matrix MA_orig)
MA_orig
- private void buildPTR()
public Jama.Matrix getL()
public Jama.Matrix getPTR()
public double[] getE_Diagonal()
public Jama.Matrix getE()
public double getENorm()
public double getDetL()
public double getDetA()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |