Matrix<T>.GetLUDecomposition Method

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0

Overload List

GetLUDecomposition() Returns the LU decomposition of the matrix.
GetLUDecomposition(Boolean) Returns the LU decomposition of the matrix.

GetLUDecomposition

Returns the LU decomposition of the matrix.
C#
public LUDecomposition<T> GetLUDecomposition()

Return Value

LUDecomposition<T>
An LUDecomposition<T> object that represents the LU decomposition of the matrix.

GetLUDecomposition(Boolean)

Returns the LU decomposition of the matrix.
C#
public virtual LUDecomposition<T> GetLUDecomposition(
	bool overwriteMatrix
)

Parameters

overwriteMatrix  Boolean
A boolean value that indicates whether the contents of the matrix may be overwritten by the decomposition.

Return Value

LUDecomposition<T>
An LUDecomposition<T> object that represents the LU decomposition of the matrix.

See Also