Singular Value Decomposition Factors Enumeration
Enumerates the factors of a SingularValueDecomposition<T>.
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public enum SingularValueDecompositionFactors
Members
SingularValues | 0 | The singular values are requested. This is always included. |
LeftSingularVectors | 1 | The left singular vectors are requested. |
RightSingularVectors | 2 | The right singular vectors are requested. |
All | 3 | The singular values as well as the left and right singular vectors are requested. |
Thin | 7 | The singular values as well as only the corresponding left and right singular vectors are requested. |