colour.utilities.zeros¶
- colour.utilities.zeros(shape: Union[Integer, Tuple[int, ...]], dtype: Optional[Type[DTypeNumber]] = None, order: Literal['C', 'F'] = 'C') NDArray[source]¶
Wrap
np.zeros()definition to create an array with the activenumpy.dtypedefined by thecolour.constant.DEFAULT_FLOAT_DTYPEattribute.- Parameters
shape (Union[Integer, Tuple[int, ...]]) – Shape of the new array, e.g.,
(2, 3)or2.dtype (Optional[Type[DTypeNumber]]) –
numpy.dtypeto use for conversion, default to thenumpy.dtypedefined by thecolour.constant.DEFAULT_FLOAT_DTYPEattribute.order (Literal[('C', 'F')]) – Whether to store multi-dimensional data in row-major (C-style) or column-major (Fortran-style) order in memory.
- Returns
Array of given shape and
numpy.dtype, filled with zeros.- Return type
Examples
>>> zeros(3) array([ 0., 0., 0.])