MCPcopy Create free account
hub / github.com/dask/dask / conj

Method conj

dask/array/core.py:2846–2857  ·  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

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

Callers 5

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

Calls

no outgoing calls

Tested by 2

rotateFunction · 0.36