r"""Returns an element-wise indication of the sign of a number. This function follows the api from :any:`numpy.sign` See: https://numpy.org/doc/stable/reference/generated/numpy.sign.html
(self, a)
| 411 | raise NotImplementedError() |
| 412 | |
| 413 | def sign(self, a): |
| 414 | r"""Returns an element-wise indication of the sign of a number. |
| 415 | |
| 416 | This function follows the api from :any:`numpy.sign` |
| 417 | |
| 418 | See: https://numpy.org/doc/stable/reference/generated/numpy.sign.html |
| 419 | """ |
| 420 | raise NotImplementedError() |
| 421 | |
| 422 | def dot(self, a, b): |
| 423 | r""" |
no outgoing calls