Click or drag to resize

NumericalJacobianEvaluate(FuncDouble, Double, Double) Method

Evaluates the Jacobian of a multivariate function f at vector x.

Namespace: Altaxo.Calc.Differentiation
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public double[] Evaluate(
	Func<double[], double> f,
	double[] x
)

Parameters

f  FuncDouble, Double
Multivariate function handle.
x  Double
Points at which to evaluate Jacobian.

Return Value

Double
Jacobian vector.
Remarks
This function assumes that the length of vector x consistent with the argument count of f.
See Also