GeneralizedDecomposition<T>.BaseMatrix Property

Gets the primary underlying matrix of the decomposition.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> BaseMatrix { get; }

Property Value

Matrix<T>
A Matrix<T>.

Remarks

A generalized decomposition is the decomposition involving two matrices. The generalized decomposition reduces to the original decomposition of the primary matrix when the secondary matrix is the identity matrix.

Note that if the Overwrite property is true, then the elements of the base matrix after the decomposition has been calculated are no longer valid.

See Also