Click or drag to resize

ILinearAlgebraProviderTLUSolve Method

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

Namespace: Altaxo.Calc.Providers.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
void LUSolve(
	int columnsOfB,
	T[] a,
	int order,
	T[] b
)

Parameters

columnsOfB  Int32
The number of columns of B.
a  T
The square matrix A.
order  Int32
The order of the square matrix a.
b  T
On entry the B matrix; on exit the X matrix.
Remarks
This is equivalent to the GETRF and GETRS LAPACK routines.
See Also