X-Git-Url: https://git.gag.com/?a=blobdiff_plain;ds=sidebyside;f=gr-utils%2Fsrc%2Fpython%2Fgr_plot_iq.py;fp=gr-utils%2Fsrc%2Fpython%2Fgr_plot_iq.py;h=371ce3b7991b55137c7cb177180a23494d608a3e;hb=35e43e8d8c271e6842191cac3fc3f2f88a861183;hp=2a4142a815863c71c5d14f63079313f51b6b875b;hpb=ea29b08aeb54227e6628f655ccfdb96fe4d8c378;p=debian%2Fgnuradio diff --git a/gr-utils/src/python/gr_plot_iq.py b/gr-utils/src/python/gr_plot_iq.py index 2a4142a8..371ce3b7 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: