Create an array of zeros Returns a new array having a specified shape and filled with zeros.
(shape, *, dtype=None, meta=None, **kwargs)
| 369 | |
| 370 | @staticmethod |
| 371 | def zeros(shape, *, dtype=None, meta=None, **kwargs): |
| 372 | """Create an array of zeros |
| 373 | |
| 374 | Returns a new array having a specified shape and filled |
| 375 | with zeros. |
| 376 | """ |
| 377 | raise NotImplementedError |
| 378 | |
| 379 | @staticmethod |
| 380 | def empty(shape, *, dtype=None, meta=None, **kwargs): |
no outgoing calls