r""" Remove axes of length one from a. This function follows the api from :any:`numpy.squeeze`. See: https://numpy.org/doc/stable/reference/generated/numpy.squeeze.html
(self, a, axis=None)
| 882 | raise NotImplementedError() |
| 883 | |
| 884 | def squeeze(self, a, axis=None): |
| 885 | r""" |
| 886 | Remove axes of length one from a. |
| 887 | |
| 888 | This function follows the api from :any:`numpy.squeeze`. |
| 889 | |
| 890 | See: https://numpy.org/doc/stable/reference/generated/numpy.squeeze.html |
| 891 | """ |
| 892 | raise NotImplementedError() |
| 893 | |
| 894 | def unsqueeze(self, a, axis): |
| 895 | r""" |
no outgoing calls