r""" Solves a linear matrix equation, or system of linear scalar equations. This function follows the api from :any:`numpy.linalg.solve`. See: https://numpy.org/doc/stable/reference/generated/numpy.linalg.solve.html
(self, a, b)
| 920 | raise NotImplementedError() |
| 921 | |
| 922 | def solve(self, a, b): |
| 923 | r""" |
| 924 | Solves a linear matrix equation, or system of linear scalar equations. |
| 925 | |
| 926 | This function follows the api from :any:`numpy.linalg.solve`. |
| 927 | |
| 928 | See: https://numpy.org/doc/stable/reference/generated/numpy.linalg.solve.html |
| 929 | """ |
| 930 | raise NotImplementedError() |
| 931 | |
| 932 | def trace(self, a): |
| 933 | r""" |
no outgoing calls