Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pa1pal/numerical-methods
Numerical methods codes
https://github.com/pa1pal/numerical-methods
Last synced: 24 days ago
JSON representation
Numerical methods codes
- Host: GitHub
- URL: https://github.com/pa1pal/numerical-methods
- Owner: pa1pal
- Created: 2015-08-29T19:11:57.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-27T18:23:59.000Z (almost 9 years ago)
- Last Synced: 2023-08-19T08:22:29.684Z (about 1 year ago)
- Language: C++
- Size: 8.79 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Numerical-Methods
Numerical methods codes## Index
### Root Finding Methods
* [Bisection Method](https://github.com/pa1pal/Numerical-Methods/blob/master/BISECTION.cpp)
* [Method of False position](https://github.com/pa1pal/Numerical-Methods/blob/master/FALSI.cpp)
* [Secant Method](https://github.com/pa1pal/Numerical-Methods/blob/master/SECANT.cpp)
* [Newton Raphson Method](https://github.com/pa1pal/Numerical-Methods/blob/master/NEWTON-RAPHSON.cpp)### System of Linear Equations methods
* [Guass Elimination Method (without pivoting)](https://github.com/pa1pal/Numerical-Methods/blob/master/GUASS_ELIMINATION_WP.cpp)### Numerical Integraion
* [Trapezoidal Rule](https://github.com/pa1pal/Numerical-Methods/blob/master/Numerical%20Integration/trapezoidal.cpp)
* [Simpson 1/3 Rule](https://github.com/pa1pal/Numerical-Methods/blob/master/Numerical%20Integration/simpson1by3.cpp)
* [Simpson 3/8 Rule](https://github.com/pa1pal/Numerical-Methods/blob/master/Numerical%20Integration/simpson3by8.cpp)