Click or drag to resize

ILinearAlgebraProviderTLUInverse Method

Computes the inverse of matrix 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 LUInverse(
	T[] a,
	int order
)

Parameters

a  T
The N by N matrix to invert. Contains the inverse On exit.
order  Int32
The order of the square matrix a.
Remarks
This is equivalent to the GETRF and GETRI LAPACK routines.
See Also