summaryrefslogtreecommitdiff
path: root/gr-fft/python/fft/__init__.py
Commit message (Collapse)AuthorAgeFilesLines
* fft: pep8 formattingJosh Morman2021-11-241-1/+1
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* Move FFT functions and blocks to templates (#3903)mormj2020-11-031-0/+3
| | | | | | | | | | | | | * fft: refactor fft classes as templates In order to reduce code duplication construct fft objects and blocks with template paramters. Separate forward and reverse as a template parameter Maintain the real fft block forward as r2c and reverse as r2c as well Co-authored-by: Andrej Rode <mail@andrejro.de>
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-031-2/+0
| | | | | | | | | | | | | | | | All of the removed `from __future__ import` were needed in older versions of Python (mostly 2.5.x and below) but later became mandatory in most versions of Python 3 hence are not necessary anymore. More specifically, according to __future__.py[1]: - unicode_literals is part of Python since versions 2.6.0 and 3.0.0; - print_function is part of Python since versions 2.6.0 and 3.0.0; - absolute_import is part of Python since versions 2.5.0 and 3.0.0; - division is part of Python since versions 2.2.0 and 3.0.0; Get rid of those unnecessary imports to slightly clean up the codebase. [1] https://github.com/python/cpython/blob/master/Lib/__future__.py
* fft: add pybind11 bindingsJosh Morman2020-06-041-3/+3
|
* Update license header to SPDX formatdevnulling2020-01-271-13/+1
|
* python3: update non-GRC components to use python2 or python3Douglas Anderson2017-02-261-2/+6
|
* fft: Moved all window building functions into C++.Tom Rondeau2013-11-051-2/+0
| | | | | | | | | | | | 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
* Merged in next_docs branch.Ben Reynwar2013-05-191-2/+1
|
* fft: Enabling uninstalled python imports.Ben Reynwar2013-03-071-0/+35