Matrix<T>.GetSingularValueDecomposition(SingularValueDecompositionFactors, Boolean) Method

Returns the singular value decomposition of the matrix.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual SingularValueDecomposition<T> GetSingularValueDecomposition(
	SingularValueDecompositionFactors requestedFactors,
	bool overwriteMatrix
)

Parameters

requestedFactors  SingularValueDecompositionFactors
A SingularValueDecompositionFactors value that specifies which factors of the decomposition should be computed.
overwriteMatrix  Boolean
A boolean value that indicates whether the contents of the matrix may be overwritten by the decomposition.

Return Value

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

See Also