ManagedLapack.CholeskyDecompose Method

Definition

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

Overload List

CholeskyDecompose(MatrixTriangle, Int32, Span<Complex<Double>>, Int32, Int32)

Factors a symmetric positive definite matrix.
C#
public override void CholeskyDecompose(
	MatrixTriangle storedTriangle,
	int n,
	Span<Complex<double>> a,
	int lda,
	out int info
)

Parameters

storedTriangle  MatrixTriangle
A MatrixTriangle value that indicates whether the matrix components are stored in the upper or lower triangular part.
n  Int32
The number of rows and columns of the matrix.
a  Span<Complex<Double>>
A complex array that contains the elements of the matrix.
lda  Int32
The leading dimension of the matrix a.
info  Int32
On return, indicates error conditions.

CholeskyDecompose(MatrixTriangle, Int32, Span<Double>, Int32, Int32)

Factors a symmetric positive definite matrix.
C#
public override void CholeskyDecompose(
	MatrixTriangle storedTriangle,
	int n,
	Span<double> a,
	int lda,
	out int info
)

Parameters

storedTriangle  MatrixTriangle
A MatrixTriangle value that indicates whether the matrix components are stored in the upper or lower triangular part.
n  Int32
The number of rows and columns of the matrix.
a  Span<Double>
A complex array that contains the elements of the matrix.
lda  Int32
The leading dimension of the matrix a.
info  Int32
On return, indicates error conditions.

See Also