r""" Computes the exponential value element-wise. This function follows the api from :any:`numpy.exp` See: https://numpy.org/doc/stable/reference/generated/numpy.exp.html
(self, a)
| 440 | raise NotImplementedError() |
| 441 | |
| 442 | def exp(self, a): |
| 443 | r""" |
| 444 | Computes the exponential value element-wise. |
| 445 | |
| 446 | This function follows the api from :any:`numpy.exp` |
| 447 | |
| 448 | See: https://numpy.org/doc/stable/reference/generated/numpy.exp.html |
| 449 | """ |
| 450 | raise NotImplementedError() |
| 451 | |
| 452 | def log(self, a): |
| 453 | r""" |
no outgoing calls