r""" Computes the inverse of a matrix. This function follows the api from :any:`scipy.linalg.inv`. See: https://docs.scipy.org/doc/scipy/reference/generated/scipy.linalg.inv.html
(self, a)
| 940 | raise NotImplementedError() |
| 941 | |
| 942 | def inv(self, a): |
| 943 | r""" |
| 944 | Computes the inverse of a matrix. |
| 945 | |
| 946 | This function follows the api from :any:`scipy.linalg.inv`. |
| 947 | |
| 948 | See: https://docs.scipy.org/doc/scipy/reference/generated/scipy.linalg.inv.html |
| 949 | """ |
| 950 | raise NotImplementedError() |
| 951 | |
| 952 | def pinv(self, a, hermitian=False): |
| 953 | r""" |
no outgoing calls