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

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

Syntax

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

Value

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.