GeneralizedSingularValueDecomposition<T>.PrimarySingularValueMatrix Property

Gets a matrix with the singular values on the diagonal.

Definition

Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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