public class Cholesky extends Object implements Serializable, Cloneable
double
.
Class Cholesky
uses the Cholesky-Banachiewicz algortithm to
factor the matrix A.
The Cholesky factorization of a matrix is A=RRT, where R is a lower triangular matrix. Thus, A=RRT=(R1100R21R220R31R32R33)(R11R21R310R22R3200R33)=(R211(Symmetric)R21R11R222+R222R31R11R31R21+R32R22R231+R232+R233) which leads to the following for the entries of the lower triangular marix R: Ri,j=1Rj,j(Ai,j−j−1∑k=1Ri,kRj,k),fori>j and Ri,i=√Ai,i−i−1∑k=1R2i,k.
The method update
is based on the LINPACK routine SCHUD
;
see Dongarra et al. (1979) and updates the RRT Cholesky factorization
of the real symmetric positive definite matrix A after a rank-one matrix is added.
Given this factorization, update
computes the factorization
˜R such that
A+xxT=˜R˜RT.
downdate
, based on the LINPACK routine SCHDD
;
see Dongarra et al. (1979), downdates the RRT Cholesky factorization
of the real symmetric positive definite matrix A after a rank-one matrix is subtracted.
downdate
computes the factorization ˜R such that
A−xxT=˜R˜RT.
This is not always possible, since A−xxT may not be positive definite.
downdate
determines an orthogonal matrix U as the product
GN…G1 of Givens rotations, such that
U[RT0]=[˜RTxT]
By multiplying this equation by its transpose and noting that UTU=I, the desired result RRT−xxT=˜R˜RT is obtained.
Let a be the solution of the linear system Ra=x and let α=1−‖
The Givens rotations, G_i, are chosen such that G_1 \cdots G_N \left[ \begin{array}{l}a \\ \alpha \end{array} \right] = \left[ \begin{array}{l} 0 \\ 1 \end{array} \right]
The G_i, are (N + 1) by (N + 1) matrices of the form G_i = \left[ {\begin{array}{*{20}c}{ I_{i - 1} } & 0 & 0 & 0 \\ 0 & {c_i } & 0 & { - s_i } \\ 0 & 0 & {I_{N - i} } & 0 \\ 0 & {s_i } & 0 & {c_i } \\ \end{array}} \right] where I_k is the identity matrix of order k; and c_i= \cos\theta _i, s_i= \sin\theta_i for some \theta_i.
The Givens rotations are then used to form {\tilde R}^T,\,\,G_1 \cdots \,G_N \left[ \begin{array}{l} R^T \\ 0 \\ \end{array} \right] = \left[ \begin{array}{l} {\tilde R}^T \\ {\tilde x^T} \\ \end{array} \right]
The matrix \tilde R is lower triangular and \tilde x = x because x = \left( {R \,\,\, 0} \right) \left[ \begin{array}{l}a \\ \alpha \\ \end{array} \right] = \left( R \,\,\, 0 \right) U^TU \left[ \begin{array}{l}a \\ \alpha \\ \end{array} \right] = \left( {\tilde R \,\,\, \tilde x} \right) \left[ \begin{array}{l}0 \\ 1 \\ \end{array} \right] = \tilde x .
Modifier and Type | Class and Description |
---|---|
static class |
Cholesky.NotSPDException
The matrix is not symmetric, positive definite.
|
Constructor and Description |
---|
Cholesky(double[][] a)
Create the Cholesky factorization of a symmetric positive definite
matrix of type
double . |
Modifier and Type | Method and Description |
---|---|
void |
downdate(double[] x)
Downdates the factorization by subtracting a rank-1 matrix.
|
double[][] |
getR()
Returns the R matrix that results from the Cholesky factorization.
|
double[][] |
inverse()
Returns the inverse of this matrix
|
double[] |
solve(double[] b)
Solve Ax = b where A is a positive definite matrix with elements of type
double . |
void |
update(double[] x)
Updates the factorization by adding a rank-1 matrix.
|
public Cholesky(double[][] a) throws SingularMatrixException, Cholesky.NotSPDException
double
.a
- a double
square matrix to be factoredIllegalArgumentException
- Thrown when the row lengths of matrix a are not equal
(for example, the matrix edges are "jagged".)SingularMatrixException
- Thrown when the input matrix A is singular.Cholesky.NotSPDException
- Thrown when the input matrix is not symmetric, positive definite.public double[][] getR()
double
matrix which contains the lower
triangular R matrix that results from the Cholesky
factorization such that A = RR^Tpublic double[] solve(double[] b)
double
.b
- a double
array containing the right-hand side of the linear
systemdouble
array containing the solution to the system of
linear equationspublic double[][] inverse()
double
matrix containing the inversepublic void update(double[] x)
x
- A double
array which specifies the rank-1 matrix.
x
is not modified by this function.public void downdate(double[] x) throws Cholesky.NotSPDException
x
- A double
array which specifies the rank-1 matrix.
x
is not modified by this function.Cholesky.NotSPDException
- if A - xx^T is not symmetric
positive-definite.Copyright © 2020 Rogue Wave Software. All rights reserved.