Click or drag to resize

NumericalDerivativeCreateDerivativeFunctionHandle Method

Creates a function handle for the derivative of a scalar univariate function.

Namespace: Altaxo.Calc.Differentiation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
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, Double
Function handle that evaluates the derivative of input function at a fixed order.
See Also