Metadata-Version: 1.1
Name: integrator_mandubab
Version: 0.4
Summary: Simple Integrator for INF4331 assignment4 in UiO
Home-page: https://github.com/UiO-INF3331/INF3331-mandubab/tree/master/assignment4
Author: Manduba Annka Bari
Author-email: m.a.bari@sfe.uio.no
License: MIT
Description: 
        This package implements simple integration function with following signature:
        
        def integrate(f, a, b, N, method = "endpoint", implementation = "python")
        where
        f --> function to integrate (python function)
        a --> lower limit (float)
        b --> upper limit (float)
        N --> number of intermediate points (integer)
        method --> "endpoint" or "midpoint" (string)
        implementation --> "python" or "numpy" or "numba" or "cython" (string) 
Keywords: simple integrator UiO INF4331 assignment4
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Cython
Classifier: Topic :: Scientific/Engineering :: Mathematics
