Metadata-Version: 2.0
Name: differint
Version: 0.1
Summary: Collection of algorithms for numerically calculating fractional derivatives.
Home-page: http://github.com/snimpids/differint
Author: Matthew Adams
Author-email: Matthew.Adams@ucalgary.ca
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.3
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Requires-Dist: numpy

Differint
---------

This package is used for numerically calculating fractional derivatives and integrals (differintegrals). Various methods are used, which correspond to varying definitions of the differintegral.

To use the Grunwald_Letnikov differintegral of order 0.5 with a user-defined function 'func', do:

.. code-block:: python

    import differint
    fracderiv_f = differint.GL(0.5, func)

You can also specify the endpoints of your domain (default is [0,1]) and the number of points to use (default is 100).

.. code-block:: python 

    import differint
    fracderiv_f = differint.GL(0.5, func, 0., 1., 100)


