r""" Generate uniform 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)
| 760 | raise NotImplementedError() |
| 761 | |
| 762 | def rand(self, *size, type_as=None): |
| 763 | r""" |
| 764 | Generate uniform random numbers. |
| 765 | |
| 766 | This function follows the api from :any:`numpy.random.rand` |
| 767 | |
| 768 | See: https://numpy.org/doc/stable/reference/random/generated/numpy.random.rand.html |
| 769 | """ |
| 770 | raise NotImplementedError() |
| 771 | |
| 772 | def randn(self, *size, type_as=None): |
| 773 | r""" |
no outgoing calls