pub fn approximate_jacobian<T>(
f: impl VectorFunction<T>,
x: &DVector<T>,
h: &T,
) -> DMatrix<T>where
T: Real,
Expand description
Approximates the Jacobian of a vector function evaluated at x
, using
central finite differences with resolution h
.