Changeset 3149
- Timestamp:
- Nov 3, 2017 9:39:05 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIstrMath.py
r3136 r3149 4059 4059 Histograms,Phases,restraintDict,rigidbodyDict = HistoPhases 4060 4060 dependentVars = G2mv.GetDependentVars() 4061 dMdv = np.empty(0)4062 4061 histoList = list(Histograms.keys()) 4063 4062 histoList.sort() 4063 First = True 4064 4064 for histogram in histoList: 4065 4065 if 'PWDR' in histogram[:4]: … … 4087 4087 else: 4088 4088 continue #skip non-histogram entries 4089 if len(dMdv): 4089 if First: 4090 dMdv = np.sqrt(wtFactor)*dMdvh 4091 First = False 4092 else: 4090 4093 dMdv = np.concatenate((dMdv.T,np.sqrt(wtFactor)*dMdvh.T)).T 4091 else:4092 dMdv = np.sqrt(wtFactor)*dMdvh4093 4094 4094 4095 GetFobsSq(Histograms,Phases,parmDict,calcControls)
Note: See TracChangeset
for help on using the changeset viewer.