Returns an array that has the same value everywhere.
(size, dtype, rnd)
| 203 | @staticmethod |
| 204 | @memoize |
| 205 | def uniform(size, dtype, rnd): |
| 206 | """ |
| 207 | Returns an array that has the same value everywhere. |
| 208 | """ |
| 209 | return np.ones(size, dtype=dtype) |
| 210 | |
| 211 | @staticmethod |
| 212 | @memoize |
no outgoing calls