dask.array.Array.clip
dask.array.Array.clip¶
- Array.clip(min=None, max=None, out=None, **kwargs)[source]¶
This docstring was copied from numpy.ndarray.clip.
Some inconsistencies with the Dask version may exist.
Return an array whose values are limited to
[min, max]
. One of max or min must be given.Refer to numpy.clip for full documentation.
See also
numpy.clip
equivalent function