Gets or sets a value indicating whether the BaseMatrix should be overwritten by its decomposition.

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Property Overwrite As Boolean
C#
public bool Overwrite { get; set; }
C++
public:
bool Overwrite {
	bool get ();
	void set (bool value);
}

Remarks

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 BaseMatrix of the decomposition is a GeneralMatrix. When the base matrix is of another matrix type, it is never overwritten.

Exceptions

ExceptionCondition
InvalidOperationExceptionThe property is read-only because the matrix has already been factorized.