MCPcopy
hub / github.com/dask/dask / conj

Method conj

dask/array/core.py:2848–2859  ·  view source on GitHub ↗

Complex-conjugate all elements. Refer to :func:`dask.array.conj` for full documentation. See Also -------- dask.array.conj : equivalent function

(self)

Source from the content-addressed store, hash-verified

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]``.

Callers 6

rotateFunction · 0.45
_conj_transposeFunction · 0.45
lstsqFunction · 0.45
vdotFunction · 0.45
covFunction · 0.45

Calls

no outgoing calls

Tested by 2

rotateFunction · 0.36