NonlinearCurveFitter<T>.Function Property

Gets or sets the function to be fitted.

Definition

Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
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