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/reconstruction.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/reconstruction.py')
-rwxr-xr-x | gnuradio-examples/python/pfb/reconstruction.py | 2 |
1 files changed, 1 insertions, 1 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() |