Complex Singular Value Decomposition<T> Constructor
Definition
Namespace: Numerics.NET.LinearAlgebra
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
ComplexSingularValueDecomposition<T>(DenseMatrix<Complex<T>>, Boolean)
Constructs a new SingularValueDecomposition<T> object.
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.
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.