|   | JaggedQrDecompositionSolve Method (Double) | 
        
         Least squares solution of A * X = B
 
    Namespace: 
   Accord.Math.Decompositions
    Assembly:
   Accord.Math (in Accord.Math.dll) Version: 3.8.0
 Syntax
Syntaxpublic double[][] Solve(
	double[][] value
)
Public Function Solve ( 
	value As Double()()
) As Double()()
Parameters
- value
- Type: SystemDouble
 Right-hand-side matrix with as many rows as A and any number of columns.
Return Value
Type: 
DoubleA matrix that minimized the two norm of 
Q * R * X - B.
Implements
ISolverArrayDecompositionTSolve(T) Exceptions
Exceptions| Exception | Condition | 
|---|
| ArgumentException | Matrix row dimensions must be the same. | 
| InvalidOperationException | Matrix is rank deficient. | 
 See Also
See Also