Decomposition<T>.Overwrite Property
Gets or sets whether the
BaseMatrix should be overwritten by
its decomposition.
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
public bool Overwrite { get; set; }
Property Value
BooleanRemarks
Once the decomposition is completed, this value becomes read-only. If you try to set it after the decomposition has been calculated, an InvalidOperationException is thrown.
This property is only meaningful when the base matrix of the decomposition is a DenseMatrix<T>. When the base matrix is of another matrix type, it is never overwritten.
Exceptions
Invalid | The property is read-only because the matrix has already been factorized. |