summaryrefslogtreecommitdiff
path: root/gr-utils/src/python/gr_plot_iq.py
diff options
context:
space:
mode:
authortrondeau <trondeau@221aa14e-8319-0410-a670-987f0aec2ac5>2009-08-12 03:39:03 +0000
committertrondeau <trondeau@221aa14e-8319-0410-a670-987f0aec2ac5>2009-08-12 03:39:03 +0000
commita0d13b42bfb3fd081d77e9d73cf4db9695a6d88b (patch)
tree1407e44ca9f51399c9ee0a0fe51789fa1f3fcf91 /gr-utils/src/python/gr_plot_iq.py
parent420f1274bfd7cb40cd6d7851f6541f80ac6616be (diff)
Merging trondeau/pfb r11249:11581 into trunk. This adds a few polyphase filterbank implementations that do (integer) decimation, (integer) interpolation, arbitrary resampling, and channelizing. gnuradio-example/python/pfb includes a number of different examples of how to use these blocks.
git-svn-id: http://gnuradio.org/svn/gnuradio/trunk@11583 221aa14e-8319-0410-a670-987f0aec2ac5
Diffstat (limited to 'gr-utils/src/python/gr_plot_iq.py')
-rwxr-xr-xgr-utils/src/python/gr_plot_iq.py7
1 files changed, 2 insertions, 5 deletions
diff --git a/gr-utils/src/python/gr_plot_iq.py b/gr-utils/src/python/gr_plot_iq.py
index 2a4142a815..371ce3b799 100755
--- a/gr-utils/src/python/gr_plot_iq.py
+++ b/gr-utils/src/python/gr_plot_iq.py
@@ -34,10 +34,7 @@ except ImportError:
from optparse import OptionParser
-matplotlib.interactive(True)
-matplotlib.use('TkAgg')
-
-class draw_fft:
+class draw_iq:
def __init__(self, filename, options):
self.hfile = open(filename, "r")
self.block_length = options.block
@@ -168,7 +165,7 @@ def main():
raise SystemExit, 1
filename = args[0]
- dc = draw_fft(filename, options)
+ dc = draw_iq(filename, options)
if __name__ == "__main__":
try: