Creates a RealFunction that represents the numerical derivative of the specified RealFunction.

Namespace: Extreme.Mathematics.Calculus
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Shared Function CreateDelegate ( _
	targetFunction As RealFunction _
) As RealFunction
C#
public static RealFunction CreateDelegate (
	RealFunction targetFunction
)
C++
public:
static RealFunction^ CreateDelegate (
	RealFunction^ targetFunction
)

Parameters

targetFunction (Extreme.Mathematics.RealFunction)
A RealFunction.

Return Value

A RealFunction that represents the numerical derivative of targetFunction

Remarks

Central differences are used for the calculation of the derivative.

Exceptions

ExceptionCondition
ArgumentNullExceptiontargetFunction is nullNothingnullptr.

See Also