|
JaggedSingularValueDecomposition Constructor (Double[] [] , Boolean, Boolean, Boolean, Boolean)
|
Constructs a new singular value decomposition.
Namespace:
Accord.Math.Decompositions
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntaxpublic JaggedSingularValueDecomposition(
double[][] value,
bool computeLeftSingularVectors,
bool computeRightSingularVectors,
bool autoTranspose,
bool inPlace
)
Public Sub New (
value As Double()(),
computeLeftSingularVectors As Boolean,
computeRightSingularVectors As Boolean,
autoTranspose As Boolean,
inPlace As Boolean
)
Request Example
View SourceParameters
- value
- Type:System.Double[][]
The matrix to be decomposed. - computeLeftSingularVectors
- Type: System.Boolean
Pass true if the left singular vector matrix U
should be computed. Pass false otherwise. Default
is true. - computeRightSingularVectors
- Type: System.Boolean
Pass true if the right singular vector matrix V
should be computed. Pass false otherwise. Default
is true. - autoTranspose
- Type: System.Boolean
Pass true to automatically transpose the value matrix in
case JAMA's assumptions about the dimensionality of the matrix are violated.
Pass false otherwise. Default is false. - inPlace
- Type: System.Boolean
Pass true to perform the decomposition in place. The matrix
value will be destroyed in the process, resulting in less
memory comsumption.
See Also