summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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