Special.GetSymbolicDerivative Method

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

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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