Click or drag to resize

ManagedLinearAlgebraProviderCholeskySolve(Complex, Int32, Complex, Int32) Method

Solves A*X=B for X using Cholesky factorization.

Namespace: Altaxo.Calc.Providers.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void CholeskySolve(
	Complex[] a,
	int orderA,
	Complex[] b,
	int columnsB
)

Parameters

a  Complex
The square, positive definite matrix A.
orderA  Int32
The number of rows and columns in A.
b  Complex
On entry the B matrix; on exit the X matrix.
columnsB  Int32
The number of columns in the B matrix.

Implements

ILinearAlgebraProviderTCholeskySolve(T, Int32, T, Int32)
Remarks
This is equivalent to the POTRF add POTRS LAPACK routines.
See Also