diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-01-22 13:02:13 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-01-22 13:21:57 -0500 |
commit | c8f66e7979d4a96474dcf49a0adc4aed5aa7b3b9 (patch) | |
tree | e33941b072f949aeac86e6c965aef6a90f359291 /gr-qtgui/apps/plot_base.py | |
parent | c4dca2526be5ee3ac979194c1d067aadc5a619c0 (diff) |
qtgui: Updated plotting tools for more control through the GUI interface.
Diffstat (limited to 'gr-qtgui/apps/plot_base.py')
-rw-r--r-- | gr-qtgui/apps/plot_base.py | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gr-qtgui/apps/plot_base.py b/gr-qtgui/apps/plot_base.py index 936218969c..5a784b2dfd 100644 --- a/gr-qtgui/apps/plot_base.py +++ b/gr-qtgui/apps/plot_base.py @@ -40,9 +40,15 @@ except ImportError: sys.exit(1) try: - from gnuradio.qtgui.plot_form import * + from gnuradio.qtgui.plot_constellation_form import * + from gnuradio.qtgui.plot_psd_form import * + from gnuradio.qtgui.plot_spectrogram_form import * + from gnuradio.qtgui.plot_time_form import * except ImportError: - from plot_form import * + from plot_constellation_form import * + from plot_psd_form import * + from plot_spectrogram_form import * + from plot_time_form import * def read_samples(filename, start, in_size, min_size, dtype, dtype_size): # Read in_size number of samples from file |