Matrix<T>.GetSingularValueDecomposition(Matrix<T>, GeneralizedSingularValueDecompositionFactors) Method

Returns the generalized singular value decomposition of the matrix and another matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual GeneralizedSingularValueDecomposition<T> GetSingularValueDecomposition(
	Matrix<T> matrix2,
	GeneralizedSingularValueDecompositionFactors requestedFactors
)

Parameters

matrix2  Matrix<T>
The secondary matrix in the decomposition.
requestedFactors  GeneralizedSingularValueDecompositionFactors
A GeneralizedSingularValueDecompositionFactors value that specifies which factors of the decomposition should be computed.

Return Value

GeneralizedSingularValueDecomposition<T>
An SingularValueDecomposition<T> object that represents the singular value decomposition of the matrix.

See Also