NumericalDerivativeCreateDerivativeFunctionHandle Method |
Creates a function handle for the derivative of a scalar univariate function.
Namespace: Altaxo.Calc.DifferentiationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public Func<double, double> CreateDerivativeFunctionHandle(
Func<double, double> f,
int order
)
Parameters
- f FuncDouble, Double
- Input function handle.
- order Int32
- Derivative order.
Return Value
FuncDouble,
DoubleFunction handle that evaluates the derivative of input function at a fixed order.
See Also