NumericalJacobianEvaluate(FuncDouble, Double, Double) Method |
Evaluates the Jacobian of a multivariate function f at vector x.
Namespace: Altaxo.Calc.DifferentiationAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax 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
DoubleJacobian vector.
Remarks
This function assumes that the length of vector x consistent with the argument count of f.
See Also