.. numerical_methods_project documentation master file, created by sphinx-quickstart on 2025-08-07. Welcome to the documentation of numerical_methods_project ========================================================== This documentation provides an overview of the various numerical methods implemented in the **numerical_methods_project** Python package developed by Rabie Oudghiri. Contents -------- .. toctree:: :maxdepth: 2 :caption: Table of Contents modules Project Overview ---------------- This project includes several functions related to numerical methods, such as: - Numerical integration - Numerical differentiation - Solving nonlinear equations - Solving systems of linear equations These modules were inspired by the *Numerical Analysis* course taught in the third year of the Artificial Intelligence engineering program at the University of Tlemcen, under the supervision of **Professor Etchiali Abdelhak**. Function Example ---------------- Here is an example of how to use one of the functions in Python:: from numerical_methods_rabie import integration result = integration.simpson_method(f, a=0, b=1, n=100) print(result) Automatic Module Documentation ------------------------------ .. automodule:: numerical_methods_rabie :members: :undoc-members: :show-inheritance: Author ------ - Rabie Oudghiri, 2025