maths.numerical_analysis.secant_method ====================================== .. py:module:: maths.numerical_analysis.secant_method .. autoapi-nested-parse:: Implementing Secant method in Python Author: dimgrichr Functions --------- .. autoapisummary:: maths.numerical_analysis.secant_method.f maths.numerical_analysis.secant_method.secant_method Module Contents --------------- .. py:function:: f(x: float) -> float >>> f(5) 39.98652410600183 .. py:function:: secant_method(lower_bound: float, upper_bound: float, repeats: int) -> float >>> secant_method(1, 3, 2) 0.2139409276214589