An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

![Continuous Integration](https://github.com/Chris00/root1d/actions/workflows/main.yml/badge.svg)

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/).