r""" Computes the absolute value element-wise. This function follows the api from :any:`numpy.absolute` See: https://numpy.org/doc/stable/reference/generated/numpy.absolute.html
(self, a)
| 430 | raise NotImplementedError() |
| 431 | |
| 432 | def abs(self, a): |
| 433 | r""" |
| 434 | Computes the absolute value element-wise. |
| 435 | |
| 436 | This function follows the api from :any:`numpy.absolute` |
| 437 | |
| 438 | See: https://numpy.org/doc/stable/reference/generated/numpy.absolute.html |
| 439 | """ |
| 440 | raise NotImplementedError() |
| 441 | |
| 442 | def exp(self, a): |
| 443 | r""" |
no outgoing calls