summaryrefslogtreecommitdiff
path: root/numpy/fft/tests/test_fftpack.py
blob: d1409bd692695ff182114303c6f47f6190e8d5dc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
import sys
from numpy.testing import *
set_package_path()
import numpy as np
restore_path()

def fft1(x):
    L = len(x)
    phase = -2j*np.pi*(np.arange(L)/float(L))
    phase = np.arange(L).reshape(-1,1) * phase
    return np.sum(x*np.exp(phase),axis=1)

class TestFFTShift(NumpyTestCase):
    def check_fft_n(self):
        self.failUnlessRaises(ValueError,np.fft.fft,[1,2,3],0)

class TestFFT1D(NumpyTestCase):
    def check_basic(self):
        rand = np.random.random
        x = rand(30) + 1j*rand(30)
        assert_array_almost_equal(fft1(x), np.fft.fft(x))

if __name__ == "__main__":
    NumpyTest().run()