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

https://github.com/makramkd/root-finding

A collection of root finding algorithms in simple, straightforward C++.
https://github.com/makramkd/root-finding

Last synced: 3 months ago
JSON representation

A collection of root finding algorithms in simple, straightforward C++.

Awesome Lists containing this project

README

        

# Root Finding

The implementation of various root finding algorithms in C++. These include:

- Fixed Point Iteration
- Newton's Method
- Bisection Method
- Secant Method

In the process of implementing the above, I will also provide a
numerical differentiation routine.