Chi2fit.Math.jacobian
You're seeing just the function
jacobian
, go back to Chi2fit.Math module for more information.
Calculates the jacobian of the function at the point x
.
Examples
iex> jacobian([2.0,3.0], fn [x,y] -> x*y end) |> Enum.map(&Float.round(&1))
[3.0, 2.0]