Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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)