Rounds the Array in-place to the given number of decimals.
(self, d=0)
| 232 | return Array(a) |
| 233 | |
| 234 | def round_(self, d=0): |
| 235 | """ Rounds the Array in-place to the given number of decimals. """ |
| 236 | warn() |
| 237 | self[:] = Array(map(lambda e: round(e, d), self)) |
| 238 | return self |
| 239 | |
| 240 | def gt(self, e, inplace=False): |
| 241 | """ Returns x > y element-wise """ |