Click or drag to resize

ManagedLinearAlgebraProviderCholeskySolveFactored(Single, Int32, Single, Int32) Method

Solves A*X=B for X using a previously factored A matrix.

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

Parameters

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

Implements

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