C++11 implementation of numerical algorithms described in Numerical Analysis by Richard L. Burden and J. Douglas Faires
Currently includes:
- Bisection Method
- Fixed Point Method
- Newton Method
- Modified Newton Method
- Secant Method
- Regula Falsi Method (Method of False Position)
- Gauss Elimination Method (Direct Method)
- Guass Jordon Method
- Guass Jacobi Method
- Guass Seidal Method
- Power Method (dominant Eigen Value)
- Method of Least Squares Approximation
- Polynomial Least Squares Approximation
- Lagrange Interpolation
- Direct Difference
- Forward Difference
- Backward Difference
- Central Difference
- Forward and Backward Difference Formula
- First Derivative Point Formula
- Second Derivative Mid Point Formula
- Trapezoidal Rule
- Simpson Rule
- Gaussian Quadrature
- Euler Method
- Taylor Method
- Runga Kutta Method