Changeset 2764
- Timestamp:
- Mar 29, 2017 8:28:04 PM (6 years ago)
- Location:
- trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/GSASIIlattice.py
r2560 r2764 910 910 :param dmin: minimum d-spacing in A 911 911 :param Bravais: lattice type (see GetBraviasNum). Bravais is one of:: 912 912 913 0 F cubic 913 914 1 I cubic … … 1189 1190 def LaueUnique2(SGData,refList): 1190 1191 ''' Impose Laue symmetry on hkl 1192 1191 1193 :param SGData: space group data from 'P '+Laue 1192 1194 :param HKLF: np.array([[h,k,l,...]]) reflection set to be converted … … 1203 1205 def LaueUnique(Laue,HKLF): 1204 1206 ''' Impose Laue symmetry on hkl 1207 1205 1208 :param Laue: str Laue symbol 1206 centrosymmetric Laue groups 1209 centrosymmetric Laue groups:: 1210 1207 1211 ['-1','2/m','112/m','2/m11','mmm','-42m','-4m2','4/mmm','-3','-31m','-3m1', 1208 1212 '6/m','6/mmm','m3','m3m'] 1209 noncentrosymmetric Laue groups 1213 1214 noncentrosymmetric Laue groups:: 1215 1210 1216 ['1','2','211','112','m','m11','11m','222','mm2','m2m','2mm', 1211 1217 '4','-4','422','4mm','3','312','321','31m','3m1', 1212 1218 '6','-6','622','6mm','-62m','-6m2','23','432','-43m'] 1219 1213 1220 :param HKLF: np.array([[h,k,l,...]]) reflection set to be converted 1214 1221 -
trunk/GSASIImath.py
r2755 r2764 51 51 """ 52 52 Minimize the sum of squares of a function (:math:`f`) evaluated on a series of 53 values (y): :math:`\sum_{y=0}^{N_{obs}} f(y,{args})` 54 55 :: 56 57 Nobs 58 x = arg min(sum(func(y)**2,axis=0)) 59 y=0 53 values (y): :math:`\sum_{y=0}^{N_{obs}} f(y,{args})` 54 where :math:`x = arg min(\sum_{y=0}^{N_{obs}} (func(y)**2,axis=0))` 60 55 61 56 :param function func: callable method or function -
trunk/GSASIIobj.py
r2727 r2764 475 475 a key of ``Data``, as outlined below. 476 476 477 .. tabularcolumns:: |l |l|p{4in}|477 .. tabularcolumns:: |l{1in}|l{1in}|p{4in}| 478 478 479 479 ====================== =============== ==================================================== -
trunk/GSASIIplot.py
r2754 r2764 22 22 import wx.glcanvas 23 23 import matplotlib as mpl 24 import matplotlib.collections as mplC 24 try: # code not found in readthedocs 25 import matplotlib.collections as mplC 26 except: 27 print('matplotlib.collections not present') 25 28 import mpl_toolkits.mplot3d.axes3d as mp3d 26 29 import GSASIIpath -
trunk/docs/source/conf.py
r2037 r2764 99 99 sys.path.insert(1, os.path.abspath(os.path.join('..', '..','exports'))) 100 100 sys.path.insert(1, os.path.abspath(os.path.join('..', '..','imports'))) 101 101 print(sys.path) 102 102 # -- General configuration ----------------------------------------------------- 103 103
Note: See TracChangeset
for help on using the changeset viewer.