Metadata-Version: 1.0
Name: pyFFTW
Version: 0.6.0
Summary: A pythonic wrapper around FFTW, the FFT library, presenting a unified interface for all the supported transforms.
Home-page: http://hgomersall.github.com/pyFFTW/
Author: Henry Gomersall
Author-email: heng@kedevelopments.co.uk
License: UNKNOWN
Description: 
        pyFFTW is an attempt to produce a pythonic wrapper around 
        `FFTW <http://www.fftw.org/>`_. The ultimate aim is to present a unified
        interface for all the possible transforms that FFTW can perform.
        
        Both the complex DFT and the real DFT are supported, as well as arbitrary
        axes of abitrary shaped and strided arrays, which makes it almost
        feature equivalent to standard and real FFT functions of ``numpy.fft`` 
        (indeed, it supports the ``clongdouble`` dtype which ``numpy.fft`` does not). 
        
        A comprehensive unittest suite is included with the source.
        
        To build from source, the FFTW library must be installed already.
        
        The documentation can be found 
        `here <http://hgomersall.github.com/pyFFTW/>`_, and the source
        is on `github <https://github.com/hgomersall/pyFFTW>`_.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 4 - Beta
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Mathematics
Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis
