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++.
- Host: GitHub
- URL: https://github.com/makramkd/root-finding
- Owner: makramkd
- License: mit
- Created: 2015-12-09T03:20:51.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-09T03:21:28.000Z (over 9 years ago)
- Last Synced: 2023-03-01T16:22:15.420Z (about 2 years ago)
- Language: C++
- Size: 19.5 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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 MethodIn the process of implementing the above, I will also provide a
numerical differentiation routine.