r""" Computes the outer product between two vectors. This function follows the api from :any:`numpy.outer` See: https://numpy.org/doc/stable/reference/generated/numpy.outer.html
(self, a, b)
| 730 | raise NotImplementedError() |
| 731 | |
| 732 | def outer(self, a, b): |
| 733 | r""" |
| 734 | Computes the outer product between two vectors. |
| 735 | |
| 736 | This function follows the api from :any:`numpy.outer` |
| 737 | |
| 738 | See: https://numpy.org/doc/stable/reference/generated/numpy.outer.html |
| 739 | """ |
| 740 | raise NotImplementedError() |
| 741 | |
| 742 | def reshape(self, a, shape): |
| 743 | r""" |
no outgoing calls