r""" Computes the matrix square root. Requires input symmetric positive semi-definite. This function follows the api from :any:`scipy.linalg.sqrtm`, allowing batches. See: https://docs.scipy.org/doc/scipy/reference/generated/scipy.linalg.sqrtm.html
(self, a)
| 960 | raise NotImplementedError() |
| 961 | |
| 962 | def sqrtm(self, a): |
| 963 | r""" |
| 964 | Computes the matrix square root. |
| 965 | Requires input symmetric positive semi-definite. |
| 966 | |
| 967 | This function follows the api from :any:`scipy.linalg.sqrtm`, |
| 968 | allowing batches. |
| 969 | |
| 970 | See: https://docs.scipy.org/doc/scipy/reference/generated/scipy.linalg.sqrtm.html |
| 971 | """ |
| 972 | raise NotImplementedError() |
| 973 | |
| 974 | def eigh(self, a): |
| 975 | r""" |
no outgoing calls