Click or drag to resize

QuickQuadraticRegressionGetYOfX Method

Evaluates the fitted quadratic at the specified x value.

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public double GetYOfX(
	double x
)

Parameters

x  Double
The x value.

Return Value

Double
The 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