Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib64 /
python2.7 /
site-packages /
numpy /
fft /
tests /
Delete
Unzip
Name
Size
Permission
Date
Action
test_fftpack.py
653
B
-rw-r--r--
2013-04-07 01:04
test_fftpack.pyc
1.77
KB
-rw-r--r--
2018-04-10 19:40
test_fftpack.pyo
1.77
KB
-rw-r--r--
2018-04-10 19:40
test_helper.py
2.11
KB
-rw-r--r--
2013-04-07 01:04
test_helper.pyc
3.32
KB
-rw-r--r--
2018-04-10 19:40
test_helper.pyo
3.32
KB
-rw-r--r--
2018-04-10 19:40
Save
Rename
from __future__ import division import numpy as np from numpy.testing import TestCase, run_module_suite, assert_array_almost_equal 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(TestCase): def test_fft_n(self): self.assertRaises(ValueError, np.fft.fft, [1, 2, 3], 0) class TestFFT1D(TestCase): def test_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__": run_module_suite()