Creates a RealFunction that
represents the numerical derivative of the specified
RealFunction.
Namespace: Extreme.Mathematics.Calculus
Assembly: Extreme.Numerics (in Extreme.Numerics)
Version: 2.1.7017.0
Syntax
| Visual Basic (Declaration) |
|---|
Public Shared Function CreateDelegate ( _ targetFunction As RealFunction _ ) As RealFunction |
| C# |
|---|
public static RealFunction CreateDelegate ( RealFunction targetFunction ) |
| Visual 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
| Exception | Condition |
|---|---|
| System.ArgumentNullException | targetFunction is nullNothingnullptr.
|