Differentiates the given function at a given point.

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

Syntax

C#
double Differentiate(
	OneVariableFunction function,
	double x
)
Visual Basic (Declaration)
Function Differentiate ( _
	function As OneVariableFunction, _
	x As Double _
) As Double
Visual C++
double Differentiate(
	OneVariableFunction^ function, 
	double x
)

Parameters

function
Type: CenterSpace.NMath.Core..::.OneVariableFunction
The function to differentiate.
x
Type: System..::.Double

[Missing <param name="x"/> documentation for "M:CenterSpace.NMath.Core.IDifferentiator.Differentiate(CenterSpace.NMath.Core.OneVariableFunction,System.Double)"]

Return Value

The derivative of function at x.

See Also