SymbolicMath.GetFunctionAndGradient Method

Returns a delegate that symbolically evaluates the gradient and returns the value of a multivariate function.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Func<Vector<double>, Vector<double>, double> GetFunctionAndGradient(
	Expression<Func<Vector<double>, double>> function
)

Parameters

function  Expression<Func<Vector<Double>, Double>>
A lambda expression that represents a multivariate function.

Return Value

Func<Vector<Double>, Vector<Double>, Double>
A delegate that represents a multivariate function returning a vector in its second argument.

Remarks

The partial derivatives are 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.

See Also