Create an empty array Returns an uninitialized array having a specified shape.
(shape, *, dtype=None, meta=None, **kwargs)
| 378 | |
| 379 | @staticmethod |
| 380 | def empty(shape, *, dtype=None, meta=None, **kwargs): |
| 381 | """Create an empty array |
| 382 | |
| 383 | Returns an uninitialized array having a specified shape. |
| 384 | """ |
| 385 | raise NotImplementedError |
| 386 | |
| 387 | @staticmethod |
| 388 | def full(shape, fill_value, *, dtype=None, meta=None, **kwargs): |
no outgoing calls