Ignore:
Timestamp:
10/18/19 06:52:19 (5 years ago)
Author:
bdef
Message:

BUG: fixing some negative number syntax

File:
1 edited

Legend:

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

    r24213 r24256  
    118118
    119119    if np.ndim(x) == 2:
    120         x = x.reshape(- 1, )
     120        x = x.reshape(-1, )
    121121    if np.ndim(y) == 2:
    122         y = y.reshape(- 1, )
     122        y = y.reshape(-1, )
    123123    if len(x) != data.shape[1] + 1 and len(x) != data.shape[1]:
    124124        raise ValueError('x should have same length as ncols(data) or ncols(data) + 1')
     
    198198                    'multiquadric': sqrt((r / self.epsilon)**2 + 1) (default)
    199199                    'inverse': 1.0 / sqrt((r / self.epsilon)**2 + 1)
    200                     'gaussian': exp(- (r / self.epsilon)**2)
     200                    'gaussian': exp(-(r / self.epsilon)**2)
    201201                    'linear': r
    202202                    'cubic': r**3
Note: See TracChangeset for help on using the changeset viewer.