(self, arrays, axis=0)
| 1262 | return np.take_along_axis(arr, indices, axis) |
| 1263 | |
| 1264 | def concatenate(self, arrays, axis=0): |
| 1265 | return np.concatenate(arrays, axis) |
| 1266 | |
| 1267 | def zero_pad(self, a, pad_width, value=0): |
| 1268 | return np.pad(a, pad_width, constant_values=value) |
nothing calls this directly
no test coverage detected