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