https://github.com/chris00/root1d
Collection of functions to find roots of functions float → float. Pure OCaml code.
https://github.com/chris00/root1d
brent newton-method ocaml ocaml-library root-finding scientific-computing
Last synced: about 1 year ago
JSON representation
Collection of functions to find roots of functions float → float. Pure OCaml code.
- Host: GitHub
- URL: https://github.com/chris00/root1d
- Owner: Chris00
- License: isc
- Created: 2016-06-30T20:15:49.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2021-11-11T16:42:23.000Z (over 4 years ago)
- Last Synced: 2025-03-20T12:54:35.256Z (about 1 year ago)
- Topics: brent, newton-method, ocaml, ocaml-library, root-finding, scientific-computing
- Language: OCaml
- Size: 67.4 KB
- Stars: 7
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGES.md
- License: LICENSE.md
Awesome Lists containing this project
README

Root1D — Find roots of 1D functions
===================================
The module `Root1D` provides a collection of functions to seek roots
of functions `float → float`.
Installation
------------
The easier way of installing this package is by using [opam][]:
```shell
opam install root1d
```
To compile by hand, install [dune][] and do `dune build @install`.
[opam]: https://opam.ocaml.org/
[dune]: https://github.com/ocaml/dune
Documentation
-------------
See the [signature of `Root1D`](src/Root1D.mli). It can also be
consulted rendered to [HTML](https://chris00.github.io/root1d/doc/).