Changeset 4807 for trunk/GSASIIplot.py
- Timestamp:
- Feb 9, 2021 10:29:39 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIplot.py
r4806 r4807 3257 3257 BackLine = None 3258 3258 DifLine = [None] 3259 if 'PWDR' in plottype and Page.plotStyle['exclude']: 3260 Emask = ma.getmask(ma.masked_less_equal(xye[3],0.)) 3259 if 'PWDR' in plottype and Page.plotStyle['exclude'] and len(limits[2:]): 3260 Emask = ma.getmask(X) 3261 excls = limits[2:] 3262 for excl in excls: 3263 Emask += ma.getmask(ma.masked_inside(xye[0],excl[0],excl[1],copy=False)) 3261 3264 Xum = ma.array(Xum,mask=Emask) 3262 3265 X = ma.array(X,mask=Emask)
Note: See TracChangeset
for help on using the changeset viewer.