Changeset 17892


Ignore:
Timestamp:
04/30/14 12:35:26 (11 years ago)
Author:
cborstad
Message:

CHG: generalize to allow interpolation onto arbitrary x,y coords

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/interp/interp.py

    r17891 r17892  
    178178        return interpdata
    179179#}}}
    180 def RadialInterp(x,y,data,**kwargs):#{{{
     180def RadialInterp(x,y,data,xi,yi,**kwargs):#{{{
    181181        '''
    182182        Interpolation using a radial basis function in 2 or 3 dimensions.
     
    187187        x,y:                    data point coordinates
    188188        data:                   data to be interpolated (same length as x,y)
     189        xi,yi:          coordinates to interpolate onto
    189190        function:       form of radial basis function for interpolation:
    190191                                        'multiquadric': sqrt((r/self.epsilon)**2 + 1) (default)
     
    200201                                        such that the function always passes through nodal points.
    201202        z:                              coordinate array if interpolating in 3 dimensions
     203        zi:                     coordinate array if interpolating in 3 dimensions
    202204
    203205        Usage:
     
    225227                else:
    226228                        rbfi=Rbf(x,y,z,data,function=function,smooth=smooth)
    227                 interpdata=rbfi(x,y,z)
     229                interpdata=rbfi(xi,yi,zi)
    228230        else:
    229231                if epsilon:
     
    231233                else:
    232234                        rbfi=Rbf(x,y,data,function=function,smooth=smooth)
    233                 interpdata=rbfi(x,y)
     235                interpdata=rbfi(xi,yi)
    234236       
    235237        return interpdata
Note: See TracChangeset for help on using the changeset viewer.