Creates a function of one variable that
represents the numerical derivative of the specified
function of one variable using
backward differences.
Namespace: Extreme.MathematicsAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public static Func<double, double> CreateBackwardDelegate(
Func<double, double> targetFunction
)
Public Shared Function CreateBackwardDelegate (
targetFunction As Func(Of Double, Double)
) As Func(Of Double, Double)
public:
static Func<double, double>^ CreateBackwardDelegate(
Func<double, double>^ targetFunction
)
static member CreateBackwardDelegate :
targetFunction : Func<float, float> -> Func<float, float>
Parameters
- targetFunction
- Type: SystemFuncDouble, Double
A delegate that represents a function of one variable.
Return Value
Type:
FuncDouble,
DoubleA delegate that represents a function of one variable that
represents the numerical derivative of
targetFunction
Backward differences are used for the
calculation of the derivative.
Numerical Libraries
Supported in: 5.x, 4.x
Reference