SingularValueDecomposition<T>.RequestedFactors Property

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

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public SingularValueDecompositionFactors RequestedFactors { get; set; }

Property Value

SingularValueDecompositionFactors
A SingularValueDecompositionFactors value.

Remarks

Computing the singular value 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 singular values are always computed. The calculation of the left and right singular vectors is optional.

See Also