Pure Python single-variable function solvers. Provides root-finding algorithms such as bisection, Newton-Raphson, secant, and others. Current version: 0.5.0. Release cadence is low (last release 2021).
pip install pyrootsVerified import paths — ran on the pinned version, not inferred.
Find a root of f(x)=x^3 - 2x -5 in interval [2,3] using bisection.
Use 'from pyroots import bisection' instead.
Ensure your function f(x) returns a single float, not a list or numpy array.
Read docstring of each solver to confirm tolerance behavior.
Use Python >=3.6.
No dependency data recorded yet.