Complex-conjugate all elements. Refer to :func:`dask.array.conj` for full documentation. See Also -------- dask.array.conj : equivalent function
(self)
| 2852 | return imag(self) |
| 2853 | |
| 2854 | def conj(self): |
| 2855 | """Complex-conjugate all elements. |
| 2856 | |
| 2857 | Refer to :func:`dask.array.conj` for full documentation. |
| 2858 | |
| 2859 | See Also |
| 2860 | -------- |
| 2861 | dask.array.conj : equivalent function |
| 2862 | """ |
| 2863 | from dask.array.ufunc import conj |
| 2864 | |
| 2865 | return conj(self) |
| 2866 | |
| 2867 | def clip(self, min=None, max=None): |
| 2868 | """Return an array whose values are limited to ``[min, max]``. |
no outgoing calls