Changeset 0e9048f in sasmodels
- Timestamp:
- Nov 23, 2015 5:02:27 PM (9 years ago)
- Branches:
- master, core_shell_microgels, costrafo411, magnetic_model, release_v0.94, release_v0.95, ticket-1257-vesicle-product, ticket_1156, ticket_1265_superball, ticket_822_more_unit_tests
- Children:
- cd3dba0, 34375ea
- Parents:
- 23259b9
- Location:
- sasmodels
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/bumps_model.py
r7cf2cfd r0e9048f 17 17 import numpy as np 18 18 19 from bumps.names import Parameter20 21 19 from . import sesans 22 20 from . import weights … … 36 34 class Model(object): 37 35 def __init__(self, model, **kw): 36 # lazy import; this allows the doc builder and nosetests to run even 37 # when bumps is not on the path. 38 from bumps.names import Parameter 39 38 40 self._sasmodel = model 39 41 partype = model.info['partype'] -
sasmodels/models/gaussian_peak.py
r677ccf1 r0e9048f 22 22 23 23 24 .. image:: img/gaussian_peak_1d.jpg24 .. figure:: img/gaussian_peak_1d.jpg 25 25 26 26 1D plot using the default values (w/500 data points). -
sasmodels/models/teubner_strey.py
rbe18d1f r0e9048f 36 36 37 37 38 .. image:: img/teubner_strey_1d.jpg38 .. figure:: img/teubner_strey_1d.jpg 39 39 40 40 1D plot using the default values (w/200 data point).
Note: See TracChangeset
for help on using the changeset viewer.