IMSL C# Numerical Library

Cholesky.Downdate Method 

Downdates the factorization by subtracting a rank-1 matrix.

public void Downdate(
   double[] x
);

Parameters

x
A double array which specifies the rank-1 matrix. x is not modified by this function.

Remarks

The object will contain the Cholesky factorization of a - x * transpose(x), where a is the previously factor matrix.

Exceptions

Exception Type Condition
NotSPDException is thrown if a - x * transpose(x) is not symmetric positive-definite.

See Also

Cholesky Class | Imsl.Math Namespace