r""" Joins a sequence of tensors along a new dimension. This function follows the api from :any:`numpy.stack` See: https://numpy.org/doc/stable/reference/generated/numpy.stack.html
(self, arrays, axis=0)
| 720 | raise NotImplementedError() |
| 721 | |
| 722 | def stack(self, arrays, axis=0): |
| 723 | r""" |
| 724 | Joins a sequence of tensors along a new dimension. |
| 725 | |
| 726 | This function follows the api from :any:`numpy.stack` |
| 727 | |
| 728 | See: https://numpy.org/doc/stable/reference/generated/numpy.stack.html |
| 729 | """ |
| 730 | raise NotImplementedError() |
| 731 | |
| 732 | def outer(self, a, b): |
| 733 | r""" |
no outgoing calls