summaryrefslogtreecommitdiff
path: root/gr-filter/python
Commit message (Collapse)AuthorAgeFilesLines
* cmake: change how test files are build when cross compilingPhilip Balister2021-12-031-0/+3
| | | | | | | | | | | | | | | | | | | | * When cross compiling gnuradio, change how the test files are built. Normally, the gnuradio QA code expects to run in the build tree. For the cross compilng case, we cannot run the QA code during the build process. The changes here allow the creation of an additional package that can be installed on a target that will run the QA code against the installed libraries. Major changes are not using full paths to test files (since they include paths that only exist on the build machine) and not setting environment variables in the shell files to force the QA code to use code in the build tree. This patch disables the C++ only tests, these need some work and then they can be added back for the cross compile case. Signed-off-by: Philip Balister <philip@balister.org>
* filter: pep8 formattingJosh Morman2021-11-2418-1022/+1542
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* filter: remove pyqwt and qt4 from filter_designJosh Morman2021-11-212-88/+90
| | | | Signed-off-by: Josh Morman <jmorman@gnuradio.org>
* filter: remove deprecated mmse_interpolatorJosh Morman2021-04-217-226/+2
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* filter: filter_delay_fc documentation used to be unclear about delayMarcus Müller2021-04-211-1/+1
| | | | | | | | This clarifies that the block does not, indeed, construct a delay-compensating all-pass, but just takes half the length of the passed taps vector and uses that as delay. Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* Bessel lp/hp filter have only one critical parameterVolker Schroer2021-04-051-4/+9
| | | | Signed-off-by: Volker Schroer <3470424+dl1ksv@users.noreply.github.com>
* Disable save after saving and delete the plotsVolker Schroer2021-04-052-1/+15
| | | | Signed-off-by: Volker Schroer <3470424+dl1ksv@users.noreply.github.com>
* gr_filter_design: conditionally enable saveVolker Schroer2021-04-051-1/+3
| | | | Signed-off-by: Volker Schroer <3470424+dl1ksv@users.noreply.github.com>
* gr_filter_design: save wintype as int instead of strVolker Schroer2021-03-241-1/+1
|
* filter: revert Calculate checkbox indexJosh Morman2021-03-231-8/+7
| | | | | | | | revert Calculate checkbox index from wintype string This reverts commit 96d590b12ebe22f088eec205806d738af51122b3. Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* Calculate checkbox index from wintype stringVolker Schroer2021-03-231-7/+8
| | | | Signed-off-by: Volker Schroer <3470424+dl1ksv@users.noreply.github.com>
* gr-filter: Remove clang -Wdefaulted-function-deleted warning.Ron Economos2021-03-191-1/+1
| | | | Signed-off-by: Ron Economos <w6rz@comcast.net>
* filter: Remove manual memory management for polyphase filterbankThomas Habets2021-03-011-1/+1
| | | | Signed-off-by: Thomas Habets <thomas@habets.se>
* gr_filter_sign: bessel bandpass calculation always failsVolker Schroer2021-02-162-7/+6
| | | | | | | | | | bessel bandpass calculation alwas fails as a wrong str to float conversion is used. Using the same conversion as in lowpass calculation fixes this problem. StandardError is not valid in python 3. It was replaced by Exception. Signed-off-by: Volker Schroer <3470424+dl1ksv@users.noreply.github.com>
* filterbanks: Use virtual destructor in superclassesMarcus Müller2021-01-262-2/+2
| | | | Signed-off-by: Marcus Müller <mmueller@gnuradio.org>
* gr-filter: update for additional window valuesJacob Gilbert2021-01-252-17/+17
| | | | | | Recently added window options include several additional windows that take a configuration parameter. This updates this parameter from 'beta' which was previously used only for Kaiser windows to a generic 'param' which makes sense for any window requiring a configuration parameter. The default values remain 6.76 which is not legal for the Tukey window but this error will be caught if the default is used; this is a reasonable cost for backward compatability. Signed-off-by: Jacob Gilbert <jacob.gilbert@protonmail.com>
* build: Remove clang compiler warnings.Ron Economos2021-01-211-1/+1
| | | | Signed-off-by: Ron Economos <w6rz@comcast.net>
* filter: Fix polyphase_filterbank for MSVC, w/ default move constructor.Ryan Volz2021-01-112-2/+2
| | | | | | | | | | | | | | Because of the deleted copy constructor (previously implicit, now made explicit in this commit to match fir_filter.h), polyphase_filterbank.cc fails to compile with MSVC trying to use the fft_filter_ccf copy constructor. Explicitly declaring a default move constructor fixes this by allowing it to use the move constuctor instead, which is the behavior we want. It's a mystery why MSVC requires this and other compilers don't, but it works. See #3892 for similar discussion and change for other filter classes. Signed-off-by: Ryan Volz <ryan.volz@gmail.com>
* pfb.py: fix variable in static functionJeff Long2021-01-041-1/+1
| | | | | | | When create_taps() was moved to a static function, a _self reference tagged along. Use function parameter as intended. Signed-off-by: Jeff Long <willcode4@gmail.com>
* filter: update python binding hashesJosh Morman2020-12-186-6/+6
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* add import fft to python files that reference fft.windowJosh Morman2020-12-183-3/+3
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* filter: update qa tests with import fftJosh Morman2020-12-188-8/+8
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* global replace of filter.firdes.WIN_ with fft.window.WIN_Josh Morman2020-12-1811-28/+28
| | | | Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* filter: remove deprecated win_type duplicate in firdesJosh Morman2020-12-182-32/+16
| | | | | | | The win_type defined in firdes is marked as deprecated to be removed in 3.8, so let's go ahead and remove it and fix all the references Signed-off-by: Josh Morman <jmorman@perspectalabs.com>
* gr-filter: Document fractional_bw parameter in rational_resampler.hRon Economos2020-12-181-1/+1
| | | | Signed-off-by: Ron Economos <w6rz@comcast.net>
* gr-filter: Remove unused parameter in polyphase_filterbank.Ron Economos2020-12-171-5/+2
|
* filter: replace rational_resampler_base with rational_resamplermormj2020-12-179-220/+72
| | | | | | | | The bulk of the rational resampler code is named rational_resampler_base and only in Python is the automatic designing of filters if taps are not specified. This pushes that code into the C++ classes (which get binded) so rational_resampler.py can go away, removing a layer of wrapping
* build: Remove clang move assignment operator deleted warnings.Ron Economos2020-12-071-1/+1
|
* fir_filter: in constructor, 'decimation' is unusedJeff Long2020-11-301-1/+1
|
* qa_freq_xlating_fir_filter: adjust phase to match codeJeff Long2020-11-251-10/+19
|
* filter: remove needless empty destructors and problematic constThomas Habets2020-11-1610-10/+10
| | | | | | | You can't move from a const object, so unfortunately it's not possible to keep constness on these. This should fix #3757
* Move FFT functions and blocks to templates (#3903)mormj2020-11-032-2/+2
| | | | | | | | | | | | | * 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>
* qa: run autopep8 formatting on qa python filesmormj2020-10-3022-662/+1088
| | | | | | find ./ -iname qa*.py | xargs autopep8 --in-place -a -a mostly formats whitespace and gets rid of trailing semicolons
* qa: remove xml file parameter causing deprecation warningsmormj2020-10-3021-21/+21
|
* Remove gcd, lcm, and log2 from gru moduleClayton Smith2020-10-291-4/+3
|
* pybind: add implicit conversion from int to enummormj2020-10-281-0/+1
| | | | | | | | | | | | | * dtv: add implicit conversion from int to enum * analog: add implicit conversion from int to enum * blocks: add implicit conversion from int to enum * digital: add implicit conversion from int to enum * fec: add implicit conversion from int to enum * fft: add implicit conversion from int to enum * filter: add implicit conversion from int to enum * qtgui: add implicit conversion from int to enum * trellis: add implicit conversion from int to enum * vocoder: add implicit conversion from int to enum * bindtool: add implicitly_convertible to all enums
* filter/fir_filter_with_buffer: Remove manual memory managementThomas Habets2020-10-261-10/+1
| | | | | This removes the copy constructor from being exported to Python. Which is good, because calling copying this Would Be Bad.
* gr-filter: Add complex band rejection design helpersYamakaja2020-10-203-2/+59
|
* filter: remove the last reference to __future__Clayton Smith2020-10-201-2/+0
|
* python: Remove unnecessary 'from __future__ import'Oleksandr Kravchuk2020-08-0326-42/+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
* filter: fix FFT frequency range calculationClayton Smith2020-07-061-2/+1
| | | | | | | | | | | | | When using certain sample rate values (e.g. 320001), the Filter Design Tool fails with "ValueError: operands could not be broadcast together with shapes (9999,) (10000,)". This occurs because the self.freq array in the get_fft function has one too many values. The self.freq array is generated using numpy.arange. Its documentation warns: "When using a non-integer step, such as 0.1, the results will often not be consistent. It is better to use numpy.linspace for these cases." As recommended, I've switched this code to use numpy.linspace, which is guaranteed to produce the correct number of values.
* filter: Remove manual memory managementThomas Habets2020-07-058-35/+8
| | | | | | | | | | | | | | | | | | | | | Mostly manual work, followed by updating checksums. Note that there were (and still remain) a lot of default copy constructors and copy assignment operators in the codebase that are not safe. And they're even exported to Python (some removed in this commit). While it's perfectly possible to allow safe copies once raw pointers are removed, it seems like a performance trap waiting to happen. Hence I removed the fir_filter copy cons/assignment. Short script I used to update the header file hashes for pybind11: ``` a=polyphase_filterbank S=$(md5sum $(find -name "${a}.h") | awk '{print $1}') sed -i -r "s/(BINDTOOL_HEADER_FILE_HASH)[(].*[)]/\1($S)/" $(find -name "${a}_python.cc") ```
* pybind: add hash check to binding file creation (#3472)mormj2020-06-0446-46/+406
|
* filter: add pybind11 bindingsJosh Morman2020-06-04103-18/+5512
|
* filter: Fix firdes RRC filter gain for alpha == 1Brett Gottula2020-04-231-0/+7
| | | | | | * Fix gain of firdes.root_raised_cosine() when alpha is set to 1.0. Was 2x the expected gain for alpha==1.0 previously. * Adds corresponding unit test.
* filter: Fix YAML files for C++ generationTerry May2020-04-112-144/+173
| | | | | | - This enables C++ support for some filter blocks. - Re-factored taps generation in pfb.py to allow c++ code to leverage default taps values.
* filter: Improve use of numpy and scipy in filter design toolWilliam Barnhart2020-03-302-28/+26
| | | | | | | - Changed numpy fftpack to fft for filter tool - Changed scipy.arange to numpy.arange for filter design - Changed poly1d import from scipy to numpy - Removed scipy label from IIR filter design
* pmt: Fix RuntimeError in pmt_to_pythonMichael Byers2020-02-091-1/+1
| | | | | | | Python has a RuntimeError that's thrown during the pmt to_python function. Instead of throwing this error, SWIG has been updated to throw a TypeError. This allows us to keep the same behavior whereby we iterate over PMT types until the proper conversion is found
* Update license header to SPDX formatdevnulling2020-01-2739-505/+39
|
* filter: gr_filter_design restore save/load behaviorJosh Morman2020-01-061-6/+8
| | | | Fixes #2686