diary hump_secant.txt kepler_secant kepler_secant Use the secant method to estimate solution to Kepler's equation. F(0) = 5 F(10) = -6.08804 After 8 iterations: F(3.79083) = 1.11022e-15 it <= itmax? true |a-b| <= xtol? true |f(b)| <= ftol? true diary lambert_secant.txt kepler_secant kepler_secant Use the secant method to search for a root of Kepler's function. F(0) = 5 F(10) = -6.08804 After 8 iterations: F(3.79083) = 1.11022e-15 it <= itmax? true |a-b| <= xtol? true |f(b)| <= ftol? true diary lambert_secant.txt