Changeset 3105
- Timestamp:
- Sep 29, 2017 1:10:11 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIimage.py
r3104 r3105 423 423 dy = y-data['center'][1] 424 424 G = ((dx-x0)**2+dy**2+distsq)/distsq #for geometric correction = 1/cos(2theta)^2 if tilt=0. 425 X = np.dstack([dx.T,dy.T,np.zeros_like(dx.T)]) 426 Z = np.dot(X,MN).T[2] 425 Z = np.dot(np.dstack([dx.T,dy.T,np.zeros_like(dx.T)]),MN).T[2] 427 426 xyZ = dx**2+dy**2-Z**2 428 427 tth = npatand(np.sqrt(xyZ)/(dist-Z))
Note: See TracChangeset
for help on using the changeset viewer.