Gets the vector of residuals. If y is the right-hand side of the least squares equation Ax = y, and we denote by yhat the vector Ax where x is the computed least squares solution, then the vector of residuals r is the vector whose ith component is r[i] = y[i] - yhat[i].

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

Syntax

C#
public FloatVector Residuals { get; }
Visual Basic (Declaration)
Public ReadOnly Property Residuals As FloatVector
Visual C++
public:
property FloatVector^ Residuals {
	FloatVector^ get ();
}

See Also