r""" Returns coordinate matrices from coordinate vectors (Numpy convention). This function follows the api from :any:`numpy.meshgrid` See: https://numpy.org/doc/stable/reference/generated/numpy.meshgrid.html
(self, a, b)
| 690 | raise NotImplementedError() |
| 691 | |
| 692 | def meshgrid(self, a, b): |
| 693 | r""" |
| 694 | Returns coordinate matrices from coordinate vectors (Numpy convention). |
| 695 | |
| 696 | This function follows the api from :any:`numpy.meshgrid` |
| 697 | |
| 698 | See: https://numpy.org/doc/stable/reference/generated/numpy.meshgrid.html |
| 699 | """ |
| 700 | raise NotImplementedError() |
| 701 | |
| 702 | def diag(self, a, k=0): |
| 703 | r""" |
no outgoing calls