r""" Returns the sum along diagonals of the array. This function follows the api from :any:`numpy.trace`. See: https://numpy.org/doc/stable/reference/generated/numpy.trace.html
(self, a)
| 930 | raise NotImplementedError() |
| 931 | |
| 932 | def trace(self, a): |
| 933 | r""" |
| 934 | Returns the sum along diagonals of the array. |
| 935 | |
| 936 | This function follows the api from :any:`numpy.trace`. |
| 937 | |
| 938 | See: https://numpy.org/doc/stable/reference/generated/numpy.trace.html |
| 939 | """ |
| 940 | raise NotImplementedError() |
| 941 | |
| 942 | def inv(self, a): |
| 943 | r""" |
no outgoing calls