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¶
Table of Contents
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)