Changeset 3362 for trunk/GSASIIimage.py
- Timestamp:
- Apr 27, 2018 4:23:53 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIimage.py
r3358 r3362 475 475 numChans = data['outChannels'] 476 476 LUtth = np.array(data['IOtth'],dtype=np.float) 477 azm = data['linescan'][1] 477 azm = data['linescan'][1]-data['azmthOff'] 478 478 Tx = np.array([tth for tth in np.linspace(LUtth[0],LUtth[1],numChans+1)]) 479 479 Ty = np.zeros_like(Tx) … … 489 489 Ty = image[xpix,ypix] 490 490 Tx = ma.array(Tx,mask=Xpix.mask+Ypix.mask).compressed() 491 return Tx,Ty491 return [Tx,Ty] 492 492 493 493 def EdgeFinder(image,data):
Note: See TracChangeset
for help on using the changeset viewer.