diff options
author | Tom Rondeau <tom@trondeau.com> | 2013-11-05 13:52:40 -0500 |
---|---|---|
committer | Tom Rondeau <tom@trondeau.com> | 2013-11-05 14:12:38 -0500 |
commit | 10be863fab34d9d2ca8a080b623e48f4cac0df48 (patch) | |
tree | 514dc7e3197f7a56fd8fa734685f70afefc83949 /gr-fft/python/fft/__init__.py | |
parent | 466c218e78b8a566bb8e6eb5ed33f95a3409eb29 (diff) |
fft: Moved all window building functions into C++.
Remove window.py. All windows built using C++ functions. Exported into Python in same module (from gnuradio.fft import window).
Removed all window building work in firdes, too. firdes.window now makes a direct call to fft.window.build with same parameters.
Added documentation for window functions, including references to where to find coefficients and equations for (most of) the windows.
All changes should not affect existing code.
f
Diffstat (limited to 'gr-fft/python/fft/__init__.py')
-rw-r--r-- | gr-fft/python/fft/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gr-fft/python/fft/__init__.py b/gr-fft/python/fft/__init__.py index e0803cbf38..1864353ed1 100644 --- a/gr-fft/python/fft/__init__.py +++ b/gr-fft/python/fft/__init__.py @@ -30,5 +30,3 @@ except ImportError: dirname, filename = os.path.split(os.path.abspath(__file__)) __path__.append(os.path.join(dirname, "..", "..", "swig")) from fft_swig import * - -from window import * |