Click or drag to resize

ManagedLinearAlgebraProviderCholeskySolve(Double, Int32, Double, 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(
	double[] a,
	int orderA,
	double[] b,
	int columnsB
)

Parameters

a  Double
The square, positive definite matrix A.
orderA  Int32
The number of rows and columns in A.
b  Double
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