diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-03-06 15:37:15 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-03-06 15:46:00 -0500 |
commit | 9ac143a654bc581d9a74363fc02e1ad30be93138 (patch) | |
tree | 537c7d57f2dd2f676011099429383b000af752ab /gr-filter/examples/resampler.py | |
parent | cf2c954ba4fc54909515f8550fd55741c9603a11 (diff) |
core: cleaning up remez and firdes in gnuradio-core; now in gr-filter.
Diffstat (limited to 'gr-filter/examples/resampler.py')
-rwxr-xr-x | gr-filter/examples/resampler.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-filter/examples/resampler.py b/gr-filter/examples/resampler.py index 5efb435631..c2a24116fc 100755 --- a/gr-filter/examples/resampler.py +++ b/gr-filter/examples/resampler.py @@ -50,7 +50,7 @@ class mytb(gr.top_block): print "Resampling from %f to %f by %f " %(fs_in, fs_out, rerate) # Creating our own taps - taps = gr.firdes.low_pass_2(32, 32, 0.25, 0.1, 80) + taps = filter.firdes.low_pass_2(32, 32, 0.25, 0.1, 80) self.src = analog.sig_source_c(fs_in, analog.GR_SIN_WAVE, fc, 1) #self.src = analog.noise_source_c(analog.GR_GAUSSIAN, 1) |