Click or drag to resize

ManagedLinearAlgebraProviderLUSolveFactored(Int32, Complex32, Int32, Int32, Complex32) 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 LUSolveFactored(
	int columnsOfB,
	Complex32[] a,
	int order,
	int[] ipiv,
	Complex32[] b
)

Parameters

columnsOfB  Int32
The number of columns of B.
a  Complex32
The factored A matrix.
order  Int32
The order of the square matrix a.
ipiv  Int32
The pivot indices of a.
b  Complex32
On entry the B matrix; on exit the X matrix.

Implements

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