Skip to content

Latest commit

 

History

History
45 lines (42 loc) · 1.07 KB

File metadata and controls

45 lines (42 loc) · 1.07 KB

Number Analysis

Intruduction

This repository encompasses a variety of numerical analysis techniques, including root finding, interpolation, regression, integration, and differentiation.

Installation

at first install python and install the library in the requirement.txt file using this command

pip install -r requirements.txt

and then run the main file.

python main.py

Methods:

Root finding:

  1. by section:

Interpolation:

  1. Chebyshew: chebyshew
  2. Hermit: hermit
  3. Lagrange: lagrange
  4. Newton:  Newton
  5. Piecewise: piecewise

Integral:

  1. Gaussian:
  2. Newton_cotes:
  3. Rectangle:
  4. Romberg:

Non linear systems:

nonLinearSystem

Differential:

  1. Taylor series taylorSeries
  2. Interpolation

Contrbution:

Contributions are welcome! Please feel free to submit a pull request.