| 
            
              JaggedSingularValueDecomposition Constructor (Double, 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
)
Public Sub New ( 
	value As Double()(),
	computeLeftSingularVectors As Boolean,
	computeRightSingularVectors As Boolean
)
 Request Example
		View SourceParameters
- value
 - Type: SystemDouble
              The matrix to be decomposed. - computeLeftSingularVectors
 - Type: SystemBoolean
              Pass  if the left singular vector matrix U 
              should be computed. Pass  otherwise. Default
              is . - computeRightSingularVectors
 - Type: SystemBoolean
              Pass  if the right singular vector matrix V
              should be computed. Pass  otherwise. Default
              is . 
See Also