Gets an expression for the symbolic derivative of a method, or the numerical derivative if
no symbolic derivative was defined.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public static LambdaExpression GetSymbolicOrNumericalDerivative(
MethodInfo method,
int position
)
Public Shared Function GetSymbolicOrNumericalDerivative (
method As MethodInfo,
position As Integer
) As LambdaExpression
public:
static LambdaExpression^ GetSymbolicOrNumericalDerivative(
MethodInfo^ method,
int position
)
static member GetSymbolicOrNumericalDerivative :
method : MethodInfo *
position : int -> LambdaExpression
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.
Return Value
Type:
LambdaExpressionA
LambdaExpression that evaluates the symbolic derivative of
method with respect to its
positionth argument.
Reference