Changeset ef6a512 in sasmodels for sasmodels/special.py
- Timestamp:
- Dec 1, 2017 6:21:44 PM (7 years ago)
- Children:
- 0a9fcab
- Parents:
- 13cf47a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sasmodels/special.py
rdb03406 ref6a512 206 206 from numpy import fmin, fmax, trunc, rint 207 207 from numpy import pi, nan, inf 208 NAN = nan209 INFINITY = inf210 211 208 from scipy.special import gamma as sas_gamma 212 209 from scipy.special import erf as sas_erf … … 220 217 # C99 standard math constants 221 218 M_PI, M_PI_2, M_PI_4, M_SQRT1_2, M_E = np.pi, np.pi/2, np.pi/4, np.sqrt(0.5), np.e 219 NAN = nan 220 INFINITY = inf 222 221 223 222 # non-standard constants
Note: See TracChangeset
for help on using the changeset viewer.