syedalimohsinbukhari / Solvers

A library for some basic numerical solvers.
MIT License
1 stars 0 forks source link

Newton Interpolators corrections #10

Closed syedalimohsinbukhari closed 9 months ago

syedalimohsinbukhari commented 9 months ago

[devel-interpolators-major-1]

  1. Renamed
    1. INTERPOLATION_.py -> interpolation_.py
    2. NewtonianInterpolationMethods.py -> newton_interpolation_methods.py
  2. minor changes to .gitignore and LagrangeInterpolation.py
  3. interpolation_.py
    1. added n_decimal to Interpolation class
    2. added proper type-hints
    3. variable name corrections according to PyLint
    4. reduced self calls inside the functions
    5. doc-string corrections for FwdInterpolation, BkwInterpolation and DividedInterpolation
  4. newton_interpolation_methods.py
    1. doc-string correction
    2. modified the functions to only return the interpolated value instead of value + difference table.
    3. added proper type-hints.