Returns a lambda expression that represents the derivative of a method with respect to the specified argument.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static LambdaExpression GetSymbolicDerivative(
MethodInfo method,
int position
)
Public Shared Function GetSymbolicDerivative (
method As MethodInfo,
position As Integer
) As LambdaExpression
public:
static LambdaExpression^ GetSymbolicDerivative(
MethodInfo^ method,
int position
)
static member GetSymbolicDerivative :
method : MethodInfo *
position : int -> LambdaExpression
Parameters
- method
- Type: System.ReflectionMethodInfo
A MethodInfo object that represents the functions to differentiate. - position
- Type: SystemInt32
The zero-based index of the argument.
Return Value
Type:
LambdaExpressionA lambda expression that represents the evaluation of the derivative of
method with respect to the argument
at position
position.
Reference