GeneralizedSingularValueDecomposition<T>.PrimarySingularValueMatrix Property

Gets a matrix with the singular values on the diagonal.

Definition

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

Property Value

DiagonalMatrix<T>
A DenseMatrix<T>.

Remarks

This property returns the matrix S in the decomposition A= USVT. The diagonal matrix has the same number of rows and columns as the base matrix.

See Also