Computes the numerical derivative of the current function at the given x-value.

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

Syntax

C#
public virtual double Differentiate(
	double x
)
Visual Basic (Declaration)
Public Overridable Function Differentiate ( _
	x As Double _
) As Double
Visual C++
public:
virtual double Differentiate(
	double x
)

Parameters

x
Type: System..::.Double
Position on the x-axis to compute the derivative.

Return Value

An approximatation of the derivative of the current function at x.

See Also