r""" Returns evenly spaced values within a given interval. This function follows the api from :any:`numpy.arange` See: https://numpy.org/doc/stable/reference/generated/numpy.arange.html
(self, stop, start=0, step=1, type_as=None)
| 321 | raise NotImplementedError() |
| 322 | |
| 323 | def arange(self, stop, start=0, step=1, type_as=None): |
| 324 | r""" |
| 325 | Returns evenly spaced values within a given interval. |
| 326 | |
| 327 | This function follows the api from :any:`numpy.arange` |
| 328 | |
| 329 | See: https://numpy.org/doc/stable/reference/generated/numpy.arange.html |
| 330 | """ |
| 331 | raise NotImplementedError() |
| 332 | |
| 333 | def full(self, shape, fill_value, type_as=None): |
| 334 | r""" |
no outgoing calls