- Timestamp:
- Oct 23, 2020 1:40:51 PM (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIdataGUI.py
r4594 r4620 3545 3545 xMin = np.searchsorted(x,self.Limits[1][0]) 3546 3546 xMax = np.searchsorted(x,self.Limits[1][1]) 3547 x = x[xMin:xMax ]3548 y = y[xMin:xMax ]3549 lenX = xMax-xMin 3547 x = x[xMin:xMax+1] 3548 y = y[xMin:xMax+1] 3549 lenX = xMax-xMin+1 3550 3550 XY.append([x,scale*y]) 3551 v = 1./w 3551 v = 1./w[xMin:xMax+1] 3552 3552 if lenX: 3553 3553 if lenX != len(x):
Note: See TracChangeset
for help on using the changeset viewer.