Computes and returns the residual vector.

Namespace:  CenterSpace.NMath.Matrix
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public FloatComplexVector ResidualVector(
	FloatComplexVector b
)
Visual Basic (Declaration)
Public Function ResidualVector ( _
	b As FloatComplexVector _
) As FloatComplexVector
Visual C++
public:
FloatComplexVector^ ResidualVector(
	FloatComplexVector^ b
)

Parameters

b
Type: CenterSpace.NMath.Core..::.FloatComplexVector
The right-hand side of the least squares problem Ax = b.

Return Value

The residual vector Ax - b, where x is the computed least squares solution to the problem Ax = b.

See Also