Changeset 7529
- Timestamp:
- 01/30/08 15:28:15
- Files:
-
- gnuradio/trunk/gnuradio-core/src/utils/gr_plot_char.py (modified) (1 diff)
- gnuradio/trunk/gnuradio-core/src/utils/gr_plot_const.py (modified) (2 diffs)
- gnuradio/trunk/gnuradio-core/src/utils/gr_plot_data.py (modified) (1 diff)
- gnuradio/trunk/gnuradio-core/src/utils/gr_plot_fft_c.py (modified) (2 diffs)
- gnuradio/trunk/gnuradio-core/src/utils/gr_plot_fft_f.py (modified) (2 diffs)
- gnuradio/trunk/gnuradio-core/src/utils/gr_plot_float.py (modified) (1 diff)
- gnuradio/trunk/gnuradio-core/src/utils/gr_plot_int.py (modified) (1 diff)
- gnuradio/trunk/gnuradio-core/src/utils/gr_plot_iq.py (modified) (2 diffs)
- gnuradio/trunk/gnuradio-core/src/utils/gr_plot_short.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gnuradio/trunk/gnuradio-core/src/utils/gr_plot_char.py
r7528 r7529 21 21 # 22 22 23 import scipy 23 try: 24 import scipy 25 except ImportError: 26 print "Please install SciPy to run this script (http://www.scipy.org/)" 27 raise SystemExit, 1 28 24 29 from optparse import OptionParser 25 30 from gr_plot_data import plot_data gnuradio/trunk/gnuradio-core/src/utils/gr_plot_const.py
r7528 r7529 1 1 #!/usr/bin/env python 2 2 # 3 # Copyright 2007 Free Software Foundation, Inc.3 # Copyright 2007,2008 Free Software Foundation, Inc. 4 4 # 5 5 # This file is part of GNU Radio … … 21 21 # 22 22 23 import scipy 24 from pylab import * 25 from matplotlib.font_manager import fontManager, FontProperties 23 try: 24 import scipy 25 except ImportError: 26 print "Please install SciPy to run this script (http://www.scipy.org/)" 27 raise SystemExit, 1 28 29 try: 30 from pylab import * 31 from matplotlib.font_manager import fontManager, FontProperties 32 except ImportError: 33 print "Please install Matplotlib to run this script (http://matplotlib.sourceforge.net/)" 34 raise SystemExit, 1 35 26 36 from optparse import OptionParser 27 37 gnuradio/trunk/gnuradio-core/src/utils/gr_plot_data.py
r7528 r7529 21 21 # 22 22 23 import scipy 24 from pylab import * 23 try: 24 import scipy 25 except ImportError: 26 print "Please install SciPy to run this script (http://www.scipy.org/)" 27 raise SystemExit, 1 28 29 try: 30 from pylab import * 31 except ImportError: 32 print "Please install Matplotlib to run this script (http://matplotlib.sourceforge.net/)" 33 raise SystemExit, 1 34 25 35 from optparse import OptionParser 26 36 gnuradio/trunk/gnuradio-core/src/utils/gr_plot_fft_c.py
r7528 r7529 1 1 #!/usr/bin/env python 2 2 # 3 # Copyright 2007 Free Software Foundation, Inc.3 # Copyright 2007,2008 Free Software Foundation, Inc. 4 4 # 5 5 # This file is part of GNU Radio … … 21 21 # 22 22 23 import scipy 24 from pylab import * 23 try: 24 import scipy 25 from scipy import fftpack 26 except ImportError: 27 print "Please install SciPy to run this script (http://www.scipy.org/)" 28 raise SystemExit, 1 29 30 try: 31 from pylab import * 32 except ImportError: 33 print "Please install Matplotlib to run this script (http://matplotlib.sourceforge.net/)" 34 raise SystemExit, 1 35 25 36 from optparse import OptionParser 26 from scipy import fftpack27 37 from math import log10 28 38 gnuradio/trunk/gnuradio-core/src/utils/gr_plot_fft_f.py
r7528 r7529 1 1 #!/usr/bin/env python 2 2 # 3 # Copyright 2007 Free Software Foundation, Inc.3 # Copyright 2007,2008 Free Software Foundation, Inc. 4 4 # 5 5 # This file is part of GNU Radio … … 21 21 # 22 22 23 import scipy 24 from pylab import * 23 try: 24 import scipy 25 from scipy import fftpack 26 except ImportError: 27 print "Please install SciPy to run this script (http://www.scipy.org/)" 28 raise SystemExit, 1 29 30 try: 31 from pylab import * 32 except ImportError: 33 print "Please install Matplotlib to run this script (http://matplotlib.sourceforge.net/)" 34 raise SystemExit, 1 35 25 36 from optparse import OptionParser 26 from scipy import fftpack27 37 from math import log10 28 38 gnuradio/trunk/gnuradio-core/src/utils/gr_plot_float.py
r7528 r7529 21 21 # 22 22 23 import scipy 23 try: 24 import scipy 25 except ImportError: 26 print "Please install SciPy to run this script (http://www.scipy.org/)" 27 raise SystemExit, 1 28 24 29 from optparse import OptionParser 25 30 from gr_plot_data import plot_data gnuradio/trunk/gnuradio-core/src/utils/gr_plot_int.py
r7528 r7529 21 21 # 22 22 23 import scipy 23 try: 24 import scipy 25 except ImportError: 26 print "Please install SciPy to run this script (http://www.scipy.org/)" 27 raise SystemExit, 1 28 24 29 from optparse import OptionParser 25 30 from gr_plot_data import plot_data gnuradio/trunk/gnuradio-core/src/utils/gr_plot_iq.py
r7528 r7529 1 1 #!/usr/bin/env python 2 2 # 3 # Copyright 2007 Free Software Foundation, Inc.3 # Copyright 2007,2008 Free Software Foundation, Inc. 4 4 # 5 5 # This file is part of GNU Radio … … 21 21 # 22 22 23 import scipy 24 from pylab import * 23 try: 24 import scipy 25 except ImportError: 26 print "Please install SciPy to run this script (http://www.scipy.org/)" 27 raise SystemExit, 1 28 29 try: 30 from pylab import * 31 except ImportError: 32 print "Please install Matplotlib to run this script (http://matplotlib.sourceforge.net/)" 33 raise SystemExit, 1 34 25 35 from optparse import OptionParser 26 36 gnuradio/trunk/gnuradio-core/src/utils/gr_plot_short.py
r7528 r7529 21 21 # 22 22 23 import scipy 23 try: 24 import scipy 25 except ImportError: 26 print "Please install SciPy to run this script (http://www.scipy.org/)" 27 raise SystemExit, 1 28 24 29 from optparse import OptionParser 25 30 from gr_plot_data import plot_data
