Gets and sets the delta used in the centeral difference method for approximating the gradient with respect to the parameters.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public double CentralDifferenceDelta { get; set; }
Visual Basic (Declaration)
Public Property CentralDifferenceDelta As Double
Visual C++
public:
property double CentralDifferenceDelta {
	double get ();
	void set (double value);
}

Remarks

If the deriving class overrides the GradientWithRespectToParams method then this property is not used.

See Also