Click or drag to resize

QuickQuadraticRegressionGetYOfXFunction Method

Creates a function that evaluates the fitted quadratic y(x).

Namespace: Altaxo.Calc.Regression
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public Func<double, double> GetYOfXFunction()

Return Value

FuncDouble, Double
A function that computes y as a function of x.
Remarks
The returned function captures the regression parameters at the time this method is called. Subsequent additions of data points do not change the returned function.
See Also