Returns an array that has the same value everywhere.
(size, dtype)
| 174 | @staticmethod |
| 175 | @memoize |
| 176 | def uniform(size, dtype): |
| 177 | """ |
| 178 | Returns an array that has the same value everywhere. |
| 179 | """ |
| 180 | return np.ones(size, dtype=dtype) |
| 181 | |
| 182 | @staticmethod |
| 183 | @memoize |
no outgoing calls