Click or drag to resize

ManagedLinearAlgebraProviderLUInverseFactored(Single, Int32, Int32) Method

Computes the inverse of a previously factored matrix.

Namespace: Altaxo.Calc.Providers.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void LUInverseFactored(
	float[] a,
	int order,
	int[] ipiv
)

Parameters

a  Single
The LU factored N by N matrix. Contains the inverse On exit.
order  Int32
The order of the square matrix a.
ipiv  Int32
The pivot indices of a.

Implements

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