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