r""" Computes the matrix frobenius norm. This function follows the api from :any:`numpy.linalg.norm` See: https://numpy.org/doc/stable/reference/generated/numpy.linalg.norm.html
(self, a, axis=None, keepdims=False)
| 490 | raise NotImplementedError() |
| 491 | |
| 492 | def norm(self, a, axis=None, keepdims=False): |
| 493 | r""" |
| 494 | Computes the matrix frobenius norm. |
| 495 | |
| 496 | This function follows the api from :any:`numpy.linalg.norm` |
| 497 | |
| 498 | See: https://numpy.org/doc/stable/reference/generated/numpy.linalg.norm.html |
| 499 | """ |
| 500 | raise NotImplementedError() |
| 501 | |
| 502 | def any(self, a): |
| 503 | r""" |
no outgoing calls