Create an ascending or descending array Returns evenly spaced values within the half-open interval ``[start, stop)`` as a one-dimensional array.
(start, /, stop=None, step=1, *, dtype=None, meta=None, **kwargs)
| 394 | |
| 395 | @staticmethod |
| 396 | def arange(start, /, stop=None, step=1, *, dtype=None, meta=None, **kwargs): |
| 397 | """Create an ascending or descending array |
| 398 | |
| 399 | Returns evenly spaced values within the half-open interval |
| 400 | ``[start, stop)`` as a one-dimensional array. |
| 401 | """ |
| 402 | raise NotImplementedError |
| 403 | |
| 404 | |
| 405 | @to_numpy_dispatch.register(np.ndarray) |
no outgoing calls