r""" Return the QR factorization See: https://numpy.org/doc/stable/reference/generated/numpy.linalg.qr.html
(self, a)
| 1056 | raise NotImplementedError() |
| 1057 | |
| 1058 | def qr(self, a): |
| 1059 | r""" |
| 1060 | Return the QR factorization |
| 1061 | |
| 1062 | See: https://numpy.org/doc/stable/reference/generated/numpy.linalg.qr.html |
| 1063 | """ |
| 1064 | raise NotImplementedError() |
| 1065 | |
| 1066 | def atan2(self, a, b): |
| 1067 | r""" |
no outgoing calls