Changeset 17892
- Timestamp:
- 04/30/14 12:35:26 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/interp/interp.py
r17891 r17892 178 178 return interpdata 179 179 #}}} 180 def RadialInterp(x,y,data, **kwargs):#{{{180 def RadialInterp(x,y,data,xi,yi,**kwargs):#{{{ 181 181 ''' 182 182 Interpolation using a radial basis function in 2 or 3 dimensions. … … 187 187 x,y: data point coordinates 188 188 data: data to be interpolated (same length as x,y) 189 xi,yi: coordinates to interpolate onto 189 190 function: form of radial basis function for interpolation: 190 191 'multiquadric': sqrt((r/self.epsilon)**2 + 1) (default) … … 200 201 such that the function always passes through nodal points. 201 202 z: coordinate array if interpolating in 3 dimensions 203 zi: coordinate array if interpolating in 3 dimensions 202 204 203 205 Usage: … … 225 227 else: 226 228 rbfi=Rbf(x,y,z,data,function=function,smooth=smooth) 227 interpdata=rbfi(x ,y,z)229 interpdata=rbfi(xi,yi,zi) 228 230 else: 229 231 if epsilon: … … 231 233 else: 232 234 rbfi=Rbf(x,y,data,function=function,smooth=smooth) 233 interpdata=rbfi(x ,y)235 interpdata=rbfi(xi,yi) 234 236 235 237 return interpdata
Note:
See TracChangeset
for help on using the changeset viewer.