diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-20 21:30:02 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-21 11:57:13 -0500 |
commit | 18b20e591ffb20951605dfc4b7cbe5964b5159fa (patch) | |
tree | c5ecd53f2211e163500a7e129ce74f3f82193d28 /gr-qtgui/apps/plot_base.py | |
parent | 9c27fc06bd0b473de50e76b845e25b835e26b6ff (diff) |
qtgui: adding time raster static plot tool.
Diffstat (limited to 'gr-qtgui/apps/plot_base.py')
-rw-r--r-- | gr-qtgui/apps/plot_base.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gr-qtgui/apps/plot_base.py b/gr-qtgui/apps/plot_base.py index 5a784b2dfd..0990a309b7 100644 --- a/gr-qtgui/apps/plot_base.py +++ b/gr-qtgui/apps/plot_base.py @@ -44,11 +44,13 @@ try: from gnuradio.qtgui.plot_psd_form import * from gnuradio.qtgui.plot_spectrogram_form import * from gnuradio.qtgui.plot_time_form import * + from gnuradio.qtgui.plot_time_raster_form import * except ImportError: from plot_constellation_form import * from plot_psd_form import * from plot_spectrogram_form import * from plot_time_form import * + from plot_time_raster_form import * def read_samples(filename, start, in_size, min_size, dtype, dtype_size): # Read in_size number of samples from file |