diff options
author | Tom Rondeau | 2012-03-02 16:15:31 -0500 |
---|---|---|
committer | Tom Rondeau | 2012-03-02 16:15:31 -0500 |
commit | d1f1c53fbc8ac7b8146af51cb104acb07cb7bdb2 (patch) | |
tree | 8d680c3b22a92a57a4b7cdae2e91109d6fc21c7b /gnuradio-examples/python/pfb/synth_to_chan.py | |
parent | 749b27b25818a292f6484c25501fad0faf748f6c (diff) | |
download | gnuradio-d1f1c53fbc8ac7b8146af51cb104acb07cb7bdb2.tar.gz gnuradio-d1f1c53fbc8ac7b8146af51cb104acb07cb7bdb2.tar.bz2 gnuradio-d1f1c53fbc8ac7b8146af51cb104acb07cb7bdb2.zip |
examples: fixing synthesizer examples to use new block name.
Diffstat (limited to 'gnuradio-examples/python/pfb/synth_to_chan.py')
-rwxr-xr-x | gnuradio-examples/python/pfb/synth_to_chan.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnuradio-examples/python/pfb/synth_to_chan.py b/gnuradio-examples/python/pfb/synth_to_chan.py index 7e454d903..c6c80b2f8 100755 --- a/gnuradio-examples/python/pfb/synth_to_chan.py +++ b/gnuradio-examples/python/pfb/synth_to_chan.py @@ -56,7 +56,7 @@ def main(): chtaps = gr.firdes.low_pass_2(len(freqs), fs, fs/float(nchans)/2, 100, 100) print "Channelizer Num. Taps = %d (taps per filter = %d)" % (len(chtaps), len(chtaps)/nchans) - filtbank = gr.pfb_synthesis_filterbank_ccf(nchans, syntaps) + filtbank = gr.pfb_synthesizer_ccf(nchans, syntaps) channelizer = blks2.pfb_channelizer_ccf(nchans, chtaps) noise_level = 0.01 |