|  | FloatSVDLeastSqResidualVector Method | 
            Computes and returns the residual vector.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic FloatVector ResidualVector(
	FloatVector b
)
Public Function ResidualVector ( 
	b As FloatVector
) As FloatVector
public:
FloatVector^ ResidualVector(
	FloatVector^ b
)
member ResidualVector : 
        b : FloatVector -> FloatVector Parameters
- b  FloatVector
- The right-hand side of the least squares problem
            Ax = b.
Return Value
FloatVectorThe residual vector 
Ax - b, where
            
x is the computed least squares solution to the 
            problem 
Ax = b.
 See Also
See Also