LUDecomposition<T> Constructor

Constructs a new LUDecomposition<T> object.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
protected LUDecomposition(
	Matrix<T> matrix,
	bool overwriteBaseMatrix
)

Parameters

matrix  Matrix<T>
The matrix to decompose.
overwriteBaseMatrix  Boolean
A boolean value that indicates whether the contents of the base matrix may be overwritten by the decomposition.

See Also