EigenvalueDecomposition<T>.RequestedFactors Property

Gets or sets which factors of the eigenvalue decomposition should be calculated.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.6
C#
public EigenvalueDecompositionFactors RequestedFactors { get; set; }

Property Value

EigenvalueDecompositionFactors
A EigenvalueDecompositionFactors value.

Remarks

Computing the eigenvalue decomposition of a matrix is a relatively expensive operation. Not all applications require the full decomposition. By specifying which factors are required, significant time can be saved during the calculation.

The eigenvalues are always computed. The calculation of the left and right eigenvectors is optional.

See Also