Special.Get Symbolic Derivative 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.2
C#
A lambda expression that represents the evaluation of the derivative of method with respect to the argument at position position.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
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
LambdaExpressionA lambda expression that represents the evaluation of the derivative of method with respect to the argument at position position.