Changeset 17891
- Timestamp:
- 04/30/14 11:10:43 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/interp/interp.py
r17713 r17891 187 187 x,y: data point coordinates 188 188 data: data to be interpolated (same length as x,y) 189 190 function: form of radial basis function for interpolation: 191 'multiquadric': sqrt((r/self.epsilon)**2 + 1) (default) 192 'inverse': 1.0/sqrt((r/self.epsilon)**2 + 1) 193 'gaussian': exp(-(r/self.epsilon)**2) 194 'linear': r 195 'cubic': r**3 196 'quintic': r**5 197 'thin_plate': r**2 * log(r) 198 epsilon: adjustable constant for scaling radial distance. Defaults to 189 function: form of radial basis function for interpolation: 190 'multiquadric': sqrt((r/self.epsilon)**2 + 1) (default) 191 'inverse': 1.0/sqrt((r/self.epsilon)**2 + 1) 192 'gaussian': exp(-(r/self.epsilon)**2) 193 'linear': r 194 'cubic': r**3 195 'quintic': r**5 196 'thin_plate': r**2 * log(r) 197 epsilon: adjustable constant for scaling radial distance. Defaults to 199 198 approximate average distance between nodes. 200 smooth:float>0, adjusts the amount of smoothing applied. Defaults to 0,199 smooth: float>0, adjusts the amount of smoothing applied. Defaults to 0, 201 200 such that the function always passes through nodal points. 202 z:coordinate array if interpolating in 3 dimensions201 z: coordinate array if interpolating in 3 dimensions 203 202 204 203 Usage: … … 211 210 212 211 # unpack kwargs 213 function=kwargs.pop('function',' multiquadric')212 function=kwargs.pop('function','gaussian') 214 213 if 'function' in kwargs: del kwargs['function'] 215 214 epsilon=kwargs.pop('epsilon',None)
Note:
See TracChangeset
for help on using the changeset viewer.