Changeset 26181


Ignore:
Timestamp:
04/08/21 03:47:45 (4 years ago)
Author:
bdef
Message:

CHG: adding special case for ints

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk-jpl/src/m/miscellaneous/prctile_issm.py ΒΆ

    r25726 r26181  
    4141        #  if one value, just copy it
    4242        elif n == 1:
    43             y = np.tile(x[0, :], (len(p), 1))
     43            if isinstance(p, int):
     44                y = x[0, :]
     45            else:
     46                y = np.tile(x[0, :], (len(p), 1))
    4447
    4548        #  if no values, use NaN
Note: See TracChangeset for help on using the changeset viewer.