| 
            
              JaggedEigenvalueDecomposition Constructor (Double, Boolean, Boolean, Boolean)
             | 
          
        
         
               Construct an eigenvalue decomposition.
 
    Namespace: 
   Accord.Math.Decompositions
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntaxpublic JaggedEigenvalueDecomposition(
	double[][] value,
	bool assumeSymmetric,
	bool inPlace = false,
	bool sort = false
)
Public Sub New ( 
	value As Double()(),
	assumeSymmetric As Boolean,
	Optional inPlace As Boolean = false,
	Optional sort As Boolean = false
)
 Request Example
		View SourceParameters
- value
 - Type: SystemDouble
               The matrix to be decomposed. - assumeSymmetric
 - Type: SystemBoolean
               Defines if the matrix should be assumed as being symmetric
               regardless if it is or not. Default is . - inPlace (Optional)
 - Type: SystemBoolean
               Pass  to perform the decomposition in place. The matrix
               value will be destroyed in the process, resulting in less
               memory comsumption. - sort (Optional)
 - Type: SystemBoolean
               Pass  to sort the eigenvalues and eigenvectors at the end
               of the decomposition. 
See Also