| 
            
              JaggedLuDecompositionSolve Method (Double)
             | 
          
        
         
              Solves a set of equation systems of type A * X = B.
            
 
    Namespace: 
   Accord.Math.Decompositions
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntaxpublic double[][] Solve(
	double[][] value
)
Public Function Solve ( 
	value As Double()()
) As Double()()
 Request Example
		View SourceParameters
- value
 - Type: SystemDouble
Right hand side matrix with as many rows as A and any number of columns. 
Return Value
Type: 
DoubleMatrix 
X so that 
L * U * X = B.
Implements
ISolverArrayDecompositionTSolve(T)
See Also