r""" Computes the eigenvalues and eigenvectors of a symmetric tensor. This function follows the api from :any:`scipy.linalg.eigh`. See: https://docs.scipy.org/doc/scipy/reference/generated/scipy.linalg.eigh.html
(self, a)
| 972 | raise NotImplementedError() |
| 973 | |
| 974 | def eigh(self, a): |
| 975 | r""" |
| 976 | Computes the eigenvalues and eigenvectors of a symmetric tensor. |
| 977 | |
| 978 | This function follows the api from :any:`scipy.linalg.eigh`. |
| 979 | |
| 980 | See: https://docs.scipy.org/doc/scipy/reference/generated/scipy.linalg.eigh.html |
| 981 | """ |
| 982 | raise NotImplementedError() |
| 983 | |
| 984 | def kl_div(self, p, q, mass=False, eps=1e-16): |
| 985 | r""" |
no outgoing calls