dask.array.full_like
dask.array.full_like¶
- dask.array.full_like(a, fill_value, order='C', dtype=None, chunks=None, name=None, shape=None)[source]¶
Return a full array with the same shape and type as a given array.
- Parameters
- aarray_like
The shape and data-type of a define these same attributes of the returned array.
- fill_valuescalar
Fill value.
- dtypedata-type, optional
Overrides the data type of the result.
- order{‘C’, ‘F’}, optional
Whether to store multidimensional data in C- or Fortran-contiguous (row- or column-wise) order in memory.
- chunkssequence of ints
The number of samples on each block. Note that the last block will have fewer samples if
len(array) % chunks != 0.- namestr, optional
An optional keyname for the array. Defaults to hashing the input keyword arguments.
- shapeint or sequence of ints, optional.
Overrides the shape of the result.
- Returns
- outndarray
Array of fill_value with the same shape and type as a.
See also
zeros_likeReturn an array of zeros with shape and type of input.
ones_likeReturn an array of ones with shape and type of input.
empty_likeReturn an empty array with shape and type of input.
zerosReturn a new array setting values to zero.
onesReturn a new array setting values to one.
emptyReturn a new uninitialized array.
fullFill a new array.