SymbolicMath.TryGetSymbolicOrNumericalDerivative Method

Attempts to get an expression for the symbolic derivative of a method, or the numerical derivative if no symbolic derivative was defined.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static bool TryGetSymbolicOrNumericalDerivative(
	MethodInfo method,
	int position,
	out LambdaExpression expression
)

Parameters

method  MethodInfo
The method for which the symbolic derivative is being defined.
position  Int32
The position of the argument with respect to which the derivative is taken.
expression  LambdaExpression
On return, an expression that evaluates the symbolic derivative of method with respect to its positionth argument.

Return Value

Boolean
true if the symbolic derivative could be found; otherwise false.

See Also