r""" Creates the identity matrix of given size. This function follows the api from :any:`numpy.eye` See: https://numpy.org/doc/stable/reference/generated/numpy.eye.html
(self, N, M=None, type_as=None)
| 341 | raise NotImplementedError() |
| 342 | |
| 343 | def eye(self, N, M=None, type_as=None): |
| 344 | r""" |
| 345 | Creates the identity matrix of given size. |
| 346 | |
| 347 | This function follows the api from :any:`numpy.eye` |
| 348 | |
| 349 | See: https://numpy.org/doc/stable/reference/generated/numpy.eye.html |
| 350 | """ |
| 351 | raise NotImplementedError() |
| 352 | |
| 353 | def sum(self, a, axis=None, keepdims=False): |
| 354 | r""" |
no outgoing calls