Changeset 4330
- Timestamp:
- Feb 26, 2020 8:32:59 AM (3 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIctrlGUI.py
r4273 r4330 5262 5262 ['RMCProfile-I', 'RMCProfile-I.htm','RMC Modeling with RMCProfile-I', 5263 5263 '''Big box modelling for real and reciprocal space diffraction data for SF6'''], 5264 ['RMCProfile-II', 'RMCProfile-II.htm','RMC Modeling with RMCProfile-II', 5265 '''Big box modelling for real and reciprocal space diffraction data for SrTiO3'''], 5264 5266 5265 5267 ['Stacking Fault Modeling'], -
trunk/GSASIIimage.py
r4325 r4330 1480 1480 pcmax = np.percentile(band.compressed(),prob) 1481 1481 mband = ma.masked_greater(band,pcmax) 1482 mean = ma.me an(mband)1482 mean = ma.median(mband) 1483 1483 std = ma.std(mband) 1484 1484 anom = ma.masked_greater((band-mean)/std,esdMul) -
trunk/GSASIIphsGUI.py
r4328 r4330 4656 4656 if dlg.ShowModal() == wx.ID_OK: 4657 4657 fpath,fName = os.path.split(dlg.GetPath()) 4658 disfile.copy_file(dlg.GetPath(),os.path.join(G2frame.LastGPXdir,fName)) 4658 if fpath != G2frame.LastGPXdir: 4659 disfile.copy_file(dlg.GetPath(),os.path.join(G2frame.LastGPXdir,fName)) 4659 4660 if os.path.exists(fName): 4660 4661 RMCPdict['files'][fil][0] = fName
Note: See TracChangeset
for help on using the changeset viewer.