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