Click or drag to resize

DifferentiateFirstDerivativeFunc Method

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

Namespace: Altaxo.Calc
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntax
C#
public static Func<double, double> FirstDerivativeFunc(
	Func<double, double> f
)

Parameters

f  FuncDouble, Double
Univariate function handle.

Return Value

FuncDouble, Double
A function that evaluates the first derivative.
See Also