https://github.com/aragilar/root-solver
https://github.com/aragilar/root-solver
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/aragilar/root-solver
- Owner: aragilar
- License: other
- Created: 2018-11-13T02:45:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2024-06-29T09:56:36.000Z (almost 2 years ago)
- Last Synced: 2025-09-22T01:54:34.411Z (9 months ago)
- Language: Python
- Size: 97.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 80
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.txt
- Code of conduct: code_of_conduct.md
- Authors: AUTHORS.md
Awesome Lists containing this project
README
[](https://root-solver.readthedocs.org/en/latest/?badge=latest)
[](https://travis-ci.org/root-solver/root-solver)
[](https://codecov.io/github/aragilar/root-solver?branch=master)
[](https://pypi.python.org/pypi/root-solver/)
[](https://pypi.python.org/pypi/root-solver/)
[](https://pypi.python.org/pypi/root-solver/)
[](https://pypi.python.org/pypi/root-solver/)
[](https://pypi.python.org/pypi/root-solver/)
[](https://pypi.python.org/pypi/root-solver/)
[](https://pypi.python.org/pypi/root-solver/)
root-solver provides solvers for polynomials of orders 2 and 3 (with plans for 4
and possibly higher), using the algorithms of Kahan and others. See
http://www.cs.berkeley.edu/~wkahan/Math128/Cubic.pdf for more information about
the algorithms included.
Additionally root-solver includes support for tracking a single root as the
coefficients of the polynomial changes.
Bug reports and suggestions should be filed at
[https://github.com/aragilar/root-solver/issues](https://github.com/aragilar/root-solver/issues).
# Installing root-solver
root-solver is distributed via [PyPI](https://pypi.org/project/root-solver/), and
can be [installed via pip](https://packaging.python.org/tutorials/installing-packages/) with:
```
pip install root-solver
```
To install a development version of root-solver, clone this repository and use:
```
pip install -e .
```