Metadata-Version: 2.1
Name: newton-polynomial
Version: 1.0.1
Summary: Newton Polynomial Interpolation
Home-page: https://github.com/msom/newton-polynomial
Author: Marc Sommerhalder
Author-email: msom@gmx.ch
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/msom/newton-polynomial/issues
Description: # Newton Polynomial Interpolation
        
        Newton Polynomial Interpolation:
        
            import numpy as np
            from newton_polynomial import polynomial
        
            x = np.array((1, 2, 3, 4, 5, 6, 7))
            y = np.array((52.5, 34, 13.5, 0, 2.5, 30, 91.5))
            polynomial(x, y)
        
        
        ## Tests
        
        Run
        
            python tests/test.py
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
