Create a uniformly filled array Returns a new array having a specified shape and filled with fill_value.
(shape, fill_value, *, dtype=None, meta=None, **kwargs)
| 386 | |
| 387 | @staticmethod |
| 388 | def full(shape, fill_value, *, dtype=None, meta=None, **kwargs): |
| 389 | """Create a uniformly filled array |
| 390 | |
| 391 | Returns a new array having a specified shape and filled |
| 392 | with fill_value. |
| 393 | """ |
| 394 | raise NotImplementedError |
| 395 | |
| 396 | @staticmethod |
| 397 | def arange(start, /, stop=None, step=1, *, dtype=None, meta=None, **kwargs): |
no outgoing calls