SymbolicMath.GetDerivative Method
Creates a function of one variable that
represents the derivative of the specified
function of one variable.
DefinitionPermalink
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
C#
A delegate that represents a function of one variable that represents the numerical derivative of targetFunction
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0
public static Func<double, double> GetDerivative(
Expression<Func<double, double>> targetFunction
)
ParametersPermalink
- targetFunction Expression<Func<Double, Double>>
- A lambda expression that represents a function of one variable.
Return ValuePermalink
Func<Double, Double>A delegate that represents a function of one variable that represents the numerical derivative of targetFunction
RemarksPermalink
The derivative is calculated symbolically from the supplied lambda expression. The expression must not contain loops or blocks. If functions are encountered for which no symbolic derivative is available, a numerical approximation is used.
ExceptionsPermalink
Argument | targetFunction is null. |