r""" Generate normal Gaussian random numbers. This function follows the api from :any:`numpy.random.rand` See: https://numpy.org/doc/stable/reference/random/generated/numpy.random.rand.html
(self, *size, type_as=None)
| 770 | raise NotImplementedError() |
| 771 | |
| 772 | def randn(self, *size, type_as=None): |
| 773 | r""" |
| 774 | Generate normal Gaussian random numbers. |
| 775 | |
| 776 | This function follows the api from :any:`numpy.random.rand` |
| 777 | |
| 778 | See: https://numpy.org/doc/stable/reference/random/generated/numpy.random.rand.html |
| 779 | """ |
| 780 | raise NotImplementedError() |
| 781 | |
| 782 | def randperm(self, size, type_as=None): |
| 783 | r""" |
no outgoing calls