NonlinearCurveFitter<T>.FunctionGradient Property

Gets or sets the gradient of 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>, Vector<double>, Vector<double>> FunctionGradient { get; set; }

Property Value

Func<T, Vector<Double>, Vector<Double>, Vector<Double>>

Remarks

The first argument to the function is the x-value. The second argument is a vector that contains the curve parameters. The third argument is a vector that should hold the result. The function should return the third argument.

See Also