MMDPROJECT / NumericalAnalysisMethods

MIT License
1 stars 0 forks source link

Integral methods #14

Open seyed0123 opened 3 months ago

seyed0123 commented 3 months ago

@ranarokni Write integration methods in such a way that they can be executed as a function from inside the main.py file like other interpolation methods

MMDPROJECT commented 3 months ago

@ranarokni There are some issues about the pull request #10:

  1. We were supposed to implement the numerical methods only using Numpy & Sympy libraries and not to import the methods from the libraries and use them. So please implement Gaussian_Quadrature, Newton_cotes and Romberg_rule by yourself.

  2. Naming convention is not being respected in Integral Methods; They all should be camel_case. Geeks for geeks

  3. Please consider implementing Gaussian_Quadrature for higher order degree of exactness.