r""" Computes the natural logarithm, element-wise. This function follows the api from :any:`numpy.log` See: https://numpy.org/doc/stable/reference/generated/numpy.log.html
(self, a)
| 450 | raise NotImplementedError() |
| 451 | |
| 452 | def log(self, a): |
| 453 | r""" |
| 454 | Computes the natural logarithm, element-wise. |
| 455 | |
| 456 | This function follows the api from :any:`numpy.log` |
| 457 | |
| 458 | See: https://numpy.org/doc/stable/reference/generated/numpy.log.html |
| 459 | """ |
| 460 | raise NotImplementedError() |
| 461 | |
| 462 | def logsumexp(self, a, axis=None, keepdims=False): |
| 463 | r""" |
no outgoing calls