From a0d13b42bfb3fd081d77e9d73cf4db9695a6d88b Mon Sep 17 00:00:00 2001
From: trondeau <trondeau@221aa14e-8319-0410-a670-987f0aec2ac5>
Date: Wed, 12 Aug 2009 03:39:03 +0000
Subject: 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
---
 gr-utils/src/python/gr_plot_iq.py | 7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

(limited to 'gr-utils/src/python/gr_plot_iq.py')

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:
-- 
cgit v1.2.3