Complex-conjugate all elements. Refer to :func:`dask.array.conj` for full documentation. See Also -------- dask.array.conj : equivalent function
(self)
| 598 | return imag(self) |
| 599 | |
| 600 | def conj(self): |
| 601 | """Complex-conjugate all elements. |
| 602 | |
| 603 | Refer to :func:`dask.array.conj` for full documentation. |
| 604 | |
| 605 | See Also |
| 606 | -------- |
| 607 | dask.array.conj : equivalent function |
| 608 | """ |
| 609 | from dask.array._array_expr._ufunc import conj |
| 610 | |
| 611 | return conj(self) |
| 612 | |
| 613 | def clip(self, min=None, max=None): |
| 614 | """Return an array whose values are limited to ``[min, max]``. |
no outgoing calls