|  | DoubleCholeskyLeastSqSolve Method | 
            Computes the solution to the least squares problem Ax = b.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic DoubleVector Solve(
	DoubleVector b
)
Public Function Solve ( 
	b As DoubleVector
) As DoubleVector
public:
DoubleVector^ Solve(
	DoubleVector^ b
)
member Solve : 
        b : DoubleVector -> DoubleVector Parameters
- b  DoubleVector
- The right-hand side of the equation.
Return Value
DoubleVectorThe solution 
x that minimizes the 2-norm of the 
            residual vector 
Ax - b.
 Exceptions
Exceptions See Also
See Also