MCPcopy
hub / github.com/dask/dask / zeros

Method zeros

dask/array/backends.py:371–377  ·  view source on GitHub ↗

Create an array of zeros Returns a new array having a specified shape and filled with zeros.

(shape, *, dtype=None, meta=None, **kwargs)

Source from the content-addressed store, hash-verified

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):

Calls

no outgoing calls