Changeset 4137
- Timestamp:
- Sep 5, 2019 1:31:50 PM (4 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIplot.py
r4114 r4137 123 123 import wx.glcanvas 124 124 import matplotlib as mpl 125 mpl.use('wxAgg') 125 if not mpl.get_backend(): #could be assigned by spyder debugger 126 mpl.use('wxAgg') 126 127 import matplotlib.collections as mplC 127 128 import mpl_toolkits.mplot3d.axes3d as mp3d -
trunk/GSASIIstrMath.py
r4136 r4137 2040 2040 dFdvDict = {} 2041 2041 for parm in parmDict: 2042 if parm == '0':2042 if ':' not in parm: 2043 2043 continue 2044 2044 if parm.split(':')[2] in ['Tmin','Tmax','Xmax','Ymax','Zmax','Fzero','Fwid',
Note: See TracChangeset
for help on using the changeset viewer.