Nonlinear Curve Fitter<T>.Function Gradient Property
Gets or sets the gradient of the function to be fitted.
Definition
Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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.