Changeset b032200 in sasmodels
- Timestamp:
- Jun 12, 2018 9:48:40 AM (7 years ago)
- Branches:
- master
- Children:
- f64b154
- Parents:
- ac995be
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/sesans.py
rac995be rb032200 51 51 G0 = np.dot(self._H0, Iq) 52 52 G = np.dot(self._H.T, Iq) 53 G0 = G[0] # FIXME: This is a kludge54 53 P = G - G0 55 54 return P … … 71 70 q = np.hstack([[0], q]) 72 71 73 H0 = np.pi * (q[1:]**2 - q[:-1]**2) * (q[1:] - q[:-1])72 H0 = np.pi * (q[1:]**2 - q[:-1]**2) 74 73 75 74 # repq = np.tile(q, (SElength.size, 1)).T
Note: See TracChangeset
for help on using the changeset viewer.