MCPcopy Create free account
hub / github.com/dask/dask / zeros

Method zeros

dask/array/backends.py:370–376  ·  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

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

Calls

no outgoing calls