Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/olivierverdier/newton
Wrapper around a nonlinear solver
https://github.com/olivierverdier/newton
Last synced: about 5 hours ago
JSON representation
Wrapper around a nonlinear solver
- Host: GitHub
- URL: https://github.com/olivierverdier/newton
- Owner: olivierverdier
- License: mit
- Created: 2016-01-23T06:24:47.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-09-06T20:52:27.000Z (2 months ago)
- Last Synced: 2024-09-07T00:10:24.025Z (2 months ago)
- Language: Python
- Size: 6.84 KB
- Stars: 0
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Newton solver
[![Build Status](https://github.com/olivierverdier/newton/actions/workflows/python_package.yml/badge.svg?branch=main)](https://github.com/olivierverdier/newton/actions/workflows/python_package.yml?query=branch%3Amain)
![Python version](https://img.shields.io/badge/Python-3.9,_3.10,_3.11,_3.12-blue.svg?logo=python)
[![codecov](https://codecov.io/github/olivierverdier/newton/graph/badge.svg?token=Ea4XsTXw6A)](https://codecov.io/github/olivierverdier/newton)A simple nonlinear solver which uses [`fsolve`](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.fsolve.html#fsolve) in general, and switches to a homemade Newton solver in case `fsolve` fails.