Changeset 13771
- Timestamp:
- 10/20/12 14:39:50 (12 years ago)
- Location:
- issm/trunk-jpl/src/m/plot
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/plot/applyoptions.py
r13440 r13771 1 import pylab as p 1 2 try: 3 import pylab as p 4 except ImportError: 5 print "could not import pylab, matplotlib has not been installed, no plotting capabilities enabled" 2 6 3 7 def applyoptions(md,data,options): -
issm/trunk-jpl/src/m/plot/plot_manager.py
r13440 r13771 1 2 try: 3 import pylab as p 4 except ImportError: 5 print "could not import pylab, matplotlib has not been installed, no plotting capabilities enabled" 6 1 7 from pairoptions import * 2 import pylab as p3 8 from checkplotoptions import checkplotoptions 4 9 from plot_mesh import plot_mesh -
issm/trunk-jpl/src/m/plot/plot_mesh.py
r13440 r13771 1 import pylab as p 1 2 try: 3 import pylab as p 4 except ImportError: 5 print "could not import pylab, matplotlib has not been installed, no plotting capabilities enabled" 6 2 7 from processmesh import processmesh 3 8 from applyoptions import applyoptions -
issm/trunk-jpl/src/m/plot/plot_unit.py
r13440 r13771 1 import pylab as p 1 2 try: 3 import pylab as p 4 except ImportError: 5 print "could not import pylab, matplotlib has not been installed, no plotting capabilities enabled" 2 6 3 7 def plot_unit(x,y,z,elements,data,is2d,isplanet,datatype,options): -
issm/trunk-jpl/src/m/plot/plotmodel.py
r13440 r13771 1 import pylab as p 1 2 try: 3 import pylab as p 4 except ImportError: 5 print "could not import pylab, matplotlib has not been installed, no plotting capabilities enabled" 6 2 7 #from pairoptions import * 3 8 from plotoptions import plotoptions
Note:
See TracChangeset
for help on using the changeset viewer.