Elementary.GetSymbolicDerivative Method

Returns a lambda expression that represents the derivative of a method with respect to the specified argument.

Definition

Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public static LambdaExpression? GetSymbolicDerivative(
	MethodInfo method,
	int position
)

Parameters

method  MethodInfo
A MethodInfo object that represents the functions to differentiate.
position  Int32
The zero-based index of the argument.

Return Value

LambdaExpression
A lambda expression that represents the evaluation of the derivative of method with respect to the argument at position position.

See Also