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