pyroot provides advanced bracketed root-finding methods for single-variable functions. Current version 0.3.1, released under MIT license, with moderate development pace.
pip install pyrootNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Demonstrates basic root-finding with default Brent method.
Ensure f(a) * f(b) < 0 before calling find_root.
Use from pyroot import BisectionMethod; method = BisectionMethod(); root = method.find_root(f, a, b)
Use pyroot.find_root instead.