r""" Computes the log of the sum of exponentials of input elements. This function follows the api from :any:`scipy.special.logsumexp` See: https://docs.scipy.org/doc/scipy/reference/generated/scipy.special.logsumexp.html
(self, a, axis=None, keepdims=False)
| 460 | raise NotImplementedError() |
| 461 | |
| 462 | def logsumexp(self, a, axis=None, keepdims=False): |
| 463 | r""" |
| 464 | Computes the log of the sum of exponentials of input elements. |
| 465 | |
| 466 | This function follows the api from :any:`scipy.special.logsumexp` |
| 467 | |
| 468 | See: https://docs.scipy.org/doc/scipy/reference/generated/scipy.special.logsumexp.html |
| 469 | """ |
| 470 | raise NotImplementedError() |
| 471 | |
| 472 | def sqrt(self, a): |
| 473 | r""" |
no outgoing calls