~ubuntu-branches/ubuntu/saucy/python-scipy/saucy

« back to all changes in this revision

Viewing changes to scipy/fftpack/__init__.py

  • Committer: Bazaar Package Importer
  • Author(s): Ondrej Certik
  • Date: 2008-06-16 22:58:01 UTC
  • mfrom: (2.1.24 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080616225801-irdhrpcwiocfbcmt
Tags: 0.6.0-12
* The description updated to match the current SciPy (Closes: #489149).
* Standards-Version bumped to 3.8.0 (no action needed)
* Build-Depends: netcdf-dev changed to libnetcdf-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#
 
2
# fftpack - Discrete Fourier Transform algorithms.
 
3
#
 
4
# Created: Pearu Peterson, August,September 2002
 
5
 
 
6
from info import __all__,__doc__
 
7
 
 
8
from fftpack_version import fftpack_version as __version__
 
9
 
 
10
from basic import *
 
11
from pseudo_diffs import *
 
12
from helper import *
 
13
 
 
14
from numpy.dual import register_func
 
15
for k in ['fft', 'ifft', 'fftn', 'ifftn', 'fft2', 'ifft2']:
 
16
    register_func(k, eval(k))
 
17
del k, register_func
 
18
 
 
19
 
 
20
from numpy.testing import NumpyTest
 
21
test = NumpyTest().test