QuickQuadraticRegressionGetYOfX Method |
Evaluates the fitted quadratic at the specified x value.
Namespace: Altaxo.Calc.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntaxpublic double GetYOfX(
double x
)
Parameters
- x Double
- The x value.
Return Value
DoubleThe predicted y value at
x.
Remarks
The polynomial coefficients A0, A1, and A2 are recomputed on each call.
For repeated evaluations, consider using
GetYOfXFunction.
Note that the returned function represents the state of the regression at the time of the call.
See Also