Changeset 26181
- Timestamp:
- 04/08/21 03:47:45 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified issm/trunk-jpl/src/m/miscellaneous/prctile_issm.py ΒΆ
r25726 r26181 41 41 # if one value, just copy it 42 42 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)) 44 47 45 48 # if no values, use NaN
Note:
See TracChangeset
for help on using the changeset viewer.