cf.Data.empty¶
-
classmethod
Data.
empty
(shape, dtype=None, units=None, chunk=True)[source]¶ Create a new data array without initializing the elements.
Note that the mask of the returned empty data is hard.
Parameters: - shape:
int
ortuple
ofint
The shape of the new array.
- dtype:
numpy.dtype
or any object convertible tonumpy.dtype
The data type of the new array. By default the data type is numpy.float64.
- units:
str
orUnits
The units for the new data array.
Returns: Examples:
>>> d = cf.Data.empty((96, 73))
- shape: