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

Method conj

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

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

Callers 5

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

Calls

no outgoing calls

Tested by 2

rotateFunction · 0.36