Matrix.CholeskyDecomposition(Matrix, Matrix, Matrix) Method

Top 

Description

Decomposes the matrix A into a triangular form L such that L*L.Transpose() = A, or a triangular form L, a permutation matrix P, and a diagonal matrix D such that P^T*L*D*L^T*P = A. The version used depends on the overload chosen. By default, L will be a lower triangle form, unless an upper triangle form is specified.

 

Timing Precision Mode

This page describes functionality in nanosecond timing precision mode.

Click here to see the documentation for this object in millisecond timing precision mode.

 

Method Signature

Matrix.CholeskyDecomposition(

Matrix L,


Matrix D,


Matrix P)

 

 

Arguments

L


Description:

The lower triangular decomposition of the matrix.

 

 

D


Description:

The diagonal matrix of the decomposition of the matrix.

 

 

P


Description:

The permutation matrix of the decomposition of the matrix.

 

 

 

Syntax

myMatrix1.CholeskyDecomposition(myMatrix2, myMatrix3, myMatrix4);

 

 

Example 1

 

 

See also

Matrix Object

Matrix.CholeskyDecomposition

Matrix, Array, and Variable Math Guide