NonlinearCurveFitter<T>.Function Property

Gets or sets the function to be fitted.

Definition

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Func<T, Vector<double>, double> Function { get; set; }

Property Value

Func<T, Vector<Double>, Double>

Remarks

The first argument to the function is the x-value. The second argument is a vector that contains the curve parameters.

See Also