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