Adds an expression for the symbolic derivative of a method.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static void DefineSymbolicDerivative(
MethodInfo method,
int position,
LambdaExpression expression
)
Public Shared Sub DefineSymbolicDerivative (
method As MethodInfo,
position As Integer,
expression As LambdaExpression
)
public:
static void DefineSymbolicDerivative(
MethodInfo^ method,
int position,
LambdaExpression^ expression
)
static member DefineSymbolicDerivative :
method : MethodInfo *
position : int *
expression : LambdaExpression -> unit
Parameters
- method
- Type: System.ReflectionMethodInfo
The method for which the symbolic derivative is being defined. - position
- Type: SystemInt32
The position of the argument with respect to which the derivative is taken. - expression
- Type: System.Linq.ExpressionsLambdaExpression
The expression that evaluates the symbolic derivative of method with respect to its positionth argument.
Reference