Click or drag to resize

QuickQuadraticRegressionGetYOfX Method

Gets the y value for a given x value. Note that in every call of this function the polynomial coefficients a0, a2, and a1 are calculated again. For repeated calls, better use GetYOfXFunction, but note that this function represents the state of the regression at the time of this call.

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

Parameters

x  Double
The x value.

Return Value

Double
The y value at the value x.
See Also