summaryrefslogtreecommitdiff
path: root/gnuradio-examples/python/pfb
diff options
context:
space:
mode:
authorTom Rondeau2012-03-02 16:15:31 -0500
committerTom Rondeau2012-03-02 16:15:31 -0500
commitd1f1c53fbc8ac7b8146af51cb104acb07cb7bdb2 (patch)
tree8d680c3b22a92a57a4b7cdae2e91109d6fc21c7b /gnuradio-examples/python/pfb
parent749b27b25818a292f6484c25501fad0faf748f6c (diff)
downloadgnuradio-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')
-rwxr-xr-xgnuradio-examples/python/pfb/reconstruction.py2
-rwxr-xr-xgnuradio-examples/python/pfb/synth_filter.py2
-rwxr-xr-xgnuradio-examples/python/pfb/synth_to_chan.py2
3 files changed, 3 insertions, 3 deletions
diff --git a/gnuradio-examples/python/pfb/reconstruction.py b/gnuradio-examples/python/pfb/reconstruction.py
index 2b6f9a831..c7909f7a5 100755
--- a/gnuradio-examples/python/pfb/reconstruction.py
+++ b/gnuradio-examples/python/pfb/reconstruction.py
@@ -39,7 +39,7 @@ def main():
# Put the pieces back together again
syn_taps = [nchans*t for t in proto_taps]
- synthesizer = gr.pfb_synthesis_filterbank_ccf(nchans, syn_taps, True)
+ synthesizer = gr.pfb_synthesizer_ccf(nchans, syn_taps, True)
src_snk = gr.vector_sink_c()
snk = gr.vector_sink_c()
diff --git a/gnuradio-examples/python/pfb/synth_filter.py b/gnuradio-examples/python/pfb/synth_filter.py
index 074d9cb2c..a91edfebf 100755
--- a/gnuradio-examples/python/pfb/synth_filter.py
+++ b/gnuradio-examples/python/pfb/synth_filter.py
@@ -50,7 +50,7 @@ def main():
taps = gr.firdes.low_pass_2(len(freqs), fs, fs/float(nchans)/2, 100, 100)
print "Num. Taps = %d (taps per filter = %d)" % (len(taps),
len(taps)/nchans)
- filtbank = gr.pfb_synthesis_filterbank_ccf(nchans, taps)
+ filtbank = gr.pfb_synthesizer_ccf(nchans, taps)
head = gr.head(gr.sizeof_gr_complex, N)
snk = gr.vector_sink_c()
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