Changeset 17891


Ignore:
Timestamp:
04/30/14 11:10:43 (11 years ago)
Author:
cborstad
Message:

CHG: default to gaussian kernel for radial interpolation smoothing function

File:
1 edited

Legend:

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

    r17713 r17891  
    187187        x,y:                    data point coordinates
    188188        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
    199198                                        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,
    201200                                        such that the function always passes through nodal points.
    202                 z:      coordinate array if interpolating in 3 dimensions
     201        z:                              coordinate array if interpolating in 3 dimensions
    203202
    204203        Usage:
     
    211210
    212211        # unpack kwargs
    213         function=kwargs.pop('function','multiquadric')
     212        function=kwargs.pop('function','gaussian')
    214213        if 'function' in kwargs: del kwargs['function']
    215214        epsilon=kwargs.pop('epsilon',None)
Note: See TracChangeset for help on using the changeset viewer.