ComplexSingularValueDecomposition<T> Constructor

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

ComplexSingularValueDecomposition<T>(DenseMatrix<Complex<T>>, Boolean)

Constructs a new SingularValueDecomposition<T> object.
C#
public ComplexSingularValueDecomposition(
	DenseMatrix<Complex<T>> matrix,
	bool overwrite
)

Parameters

matrix  DenseMatrix<Complex<T>>
A DenseMatrix<T>.
overwrite  Boolean
If false, the matrix is preserved. (This is the default.) If true, matrix is destroyed by the decomposition.

ComplexSingularValueDecomposition<T>(DenseMatrix<Complex<T>>, SingularValueDecompositionFactors, Boolean)

Constructs a new SingularValueDecomposition<T> object.
C#
public ComplexSingularValueDecomposition(
	DenseMatrix<Complex<T>> matrix,
	SingularValueDecompositionFactors requestedFactors,
	bool overwrite
)

Parameters

matrix  DenseMatrix<Complex<T>>
A DenseMatrix<T>.
requestedFactors  SingularValueDecompositionFactors
A SingularValueDecompositionFactors value that specifies which factors of the decomposition should be computed.
overwrite  Boolean
If false, the matrix is preserved. (This is the default.) If true, matrix is destroyed by the decomposition.

See Also