Return array with each element rounded to the given number of decimals. Refer to :func:`dask.array.round` for full documentation. See Also -------- dask.array.round : equivalent function
(self, decimals=0)
| 2927 | return swapaxes(self, axis1, axis2) |
| 2928 | |
| 2929 | def round(self, decimals=0): |
| 2930 | """Return array with each element rounded to the given number of decimals. |
| 2931 | |
| 2932 | Refer to :func:`dask.array.round` for full documentation. |
| 2933 | |
| 2934 | See Also |
| 2935 | -------- |
| 2936 | dask.array.round : equivalent function |
| 2937 | """ |
| 2938 | from dask.array.routines import round |
| 2939 | |
| 2940 | return round(self, decimals=decimals) |
| 2941 | |
| 2942 | def copy(self): |
| 2943 | """ |