r""" Computes the pseudo inverse of a matrix. This function follows the api from :any:`numpy.linalg.pinv`. See: https://numpy.org/devdocs/reference/generated/numpy.linalg.pinv.html
(self, a, hermitian=False)
| 950 | raise NotImplementedError() |
| 951 | |
| 952 | def pinv(self, a, hermitian=False): |
| 953 | r""" |
| 954 | Computes the pseudo inverse of a matrix. |
| 955 | |
| 956 | This function follows the api from :any:`numpy.linalg.pinv`. |
| 957 | |
| 958 | See: https://numpy.org/devdocs/reference/generated/numpy.linalg.pinv.html |
| 959 | """ |
| 960 | raise NotImplementedError() |
| 961 | |
| 962 | def sqrtm(self, a): |
| 963 | r""" |
no outgoing calls