Click or drag to resize

ManagedLinearAlgebraProviderCholeskyFactor(Complex32, Int32) Method

Computes the Cholesky factorization of A.

Namespace: Altaxo.Calc.Providers.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void CholeskyFactor(
	Complex32[] a,
	int order
)

Parameters

a  Complex32
On entry, a square, positive definite matrix. On exit, the matrix is overwritten with the the Cholesky factorization.
order  Int32
The number of rows or columns in the matrix.

Implements

ILinearAlgebraProviderTCholeskyFactor(T, Int32)
Remarks
This is equivalent to the POTRF LAPACK routine.
See Also