 | FloatCholeskyLeastSqResidualVector Method |
Computes and returns the residual vector.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
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
- Type: CenterSpace.NMath.CoreFloatVector
The right-hand side of the least squares problem
Ax = b.
Return Value
Type:
FloatVectorThe residual vector
Ax - b, where
x is the computed least squares solution to the
problem
Ax = b.
See Also