DiagonalMatrix<T>.GetCholeskyDecomposition Method

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

GetCholeskyDecomposition() Returns the Cholesky decomposition of the matrix.
GetCholeskyDecomposition(Boolean) Returns the Cholesky decomposition of the matrix.

GetCholeskyDecomposition(Boolean)

Returns the Cholesky decomposition of the matrix.
C#
public override CholeskyDecomposition<T> GetCholeskyDecomposition(
	bool overwriteMatrix
)

Parameters

overwriteMatrix  Boolean
A boolean value that indicates whether the contents of the matrix may be overwritten by the decomposition.

Return Value

CholeskyDecomposition<T>
An CholeskyDecomposition<T> object that represents the Cholesky decomposition of the matrix.

See Also