full_like
- sparse.full_like(a, fill_value, dtype=None, shape=None, format=None, **kwargs)[source]
Return a full array with the same shape and type as a given array.
- Parameters:
a (array_like) – The shape and data-type of the result will match those of a.
dtype (data-type, optional) – Overrides the data type of the result.
format (str, optional) – A format string.
compressed_axes (iterable, optional) – The axes to compress if returning a GCXS array.
- Returns:
out – Array of fill_value with the same shape and type as a.
- Return type:
Examples
>>> x = np.ones((2, 3), dtype="i8") >>> full_like(x, 9.0).todense() array([[9, 9, 9], [9, 9, 9]])