QuickLinearRegressionGetYOfX Method |
Gets the y value for a given x value. Note that in every call of this function the coefficients a0 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.RegressionAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public double GetYOfX(
double x
)
Parameters
- x Double
- The x value.
Return Value
DoubleThe y value at the value x.
See Also