Click or drag to resize

ManagedLinearAlgebraProviderLUSolve(Int32, Double, Int32, Double) 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#
public void LUSolve(
	int columnsOfB,
	double[] a,
	int order,
	double[] b
)

Parameters

columnsOfB  Int32
The number of columns of B.
a  Double
The square matrix A.
order  Int32
The order of the square matrix a.
b  Double
On entry the B matrix; on exit the X matrix.

Implements

ILinearAlgebraProviderTLUSolve(Int32, T, Int32, T)
Remarks
This is equivalent to the GETRF and GETRS LAPACK routines.
See Also