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