diff options
author | Tom Rondeau | 2010-12-28 13:31:29 -0500 |
---|---|---|
committer | Tom Rondeau | 2010-12-28 13:31:29 -0500 |
commit | caa6f821a601a37f2be0cc42c8f7fd42f9670b84 (patch) | |
tree | cac74fcc9ed2d8d47d7f4cfe9efcd5bea497eb74 /gnuradio-examples | |
parent | fd8f86713d8f9de79850b9e7aabde7c453b7e890 (diff) | |
parent | 2fa7c997559e173c59227ee14a154e4b462d46bd (diff) | |
download | gnuradio-caa6f821a601a37f2be0cc42c8f7fd42f9670b84.tar.gz gnuradio-caa6f821a601a37f2be0cc42c8f7fd42f9670b84.tar.bz2 gnuradio-caa6f821a601a37f2be0cc42c8f7fd42f9670b84.zip |
Merge branch 'master' into next
* master:
Under extreme circumstances, optfir might never produce an answer (atten>300), so this puts in a check on the ripple; if it gets too large, stop trying.
Allowing PFB interpolator to be called without specifying the taps; autogen taps inside hierblock.
Allowing PFB decimator to be called without specifying the taps; autogen taps inside hierblock.
PFB channelizer can be specified without external taps. Uses optfir to generate an internal filter to cover the channel bandwidth; user can specify the attenuation of this filter if desired.
Updating the arb. resampler to use the optfir filter that provides better specificatiion of stopband atten.
Diffstat (limited to 'gnuradio-examples')
-rwxr-xr-x | gnuradio-examples/python/pfb/channelize.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-examples/python/pfb/channelize.py b/gnuradio-examples/python/pfb/channelize.py index 27d87e558..f845c05c6 100755 --- a/gnuradio-examples/python/pfb/channelize.py +++ b/gnuradio-examples/python/pfb/channelize.py @@ -36,7 +36,7 @@ class pfb_top_block(gr.top_block): # Create a set of taps for the PFB channelizer self._taps = gr.firdes.low_pass_2(1, self._fs, 475.50, 50, - attenuation_dB=10, window=gr.firdes.WIN_BLACKMAN_hARRIS) + attenuation_dB=100, window=gr.firdes.WIN_BLACKMAN_hARRIS) # Calculate the number of taps per channel for our own information tpc = scipy.ceil(float(len(self._taps)) / float(self._M)) |