pub fn newton_solve<F, Func>(
f: Func,
x0: Array1<F>,
jac_manager: &mut JacobianManager<F>,
params: NewtonParameters<F>,
) -> IntegrateResult<NewtonResult<F>>Expand description
Solve a nonlinear system F(x) = 0 using Newton’s method
This version uses the improved Jacobian handling for performance