Changeset 24256 for issm/trunk-jpl/src/m/interp/interp.py
- Timestamp:
- 10/18/19 06:52:19 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/interp/interp.py
r24213 r24256 118 118 119 119 if np.ndim(x) == 2: 120 x = x.reshape(- 120 x = x.reshape(-1, ) 121 121 if np.ndim(y) == 2: 122 y = y.reshape(- 122 y = y.reshape(-1, ) 123 123 if len(x) != data.shape[1] + 1 and len(x) != data.shape[1]: 124 124 raise ValueError('x should have same length as ncols(data) or ncols(data) + 1') … … 198 198 'multiquadric': sqrt((r / self.epsilon)**2 + 1) (default) 199 199 'inverse': 1.0 / sqrt((r / self.epsilon)**2 + 1) 200 'gaussian': exp(- 200 'gaussian': exp(-(r / self.epsilon)**2) 201 201 'linear': r 202 202 'cubic': r**3
Note:
See TracChangeset
for help on using the changeset viewer.