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