MCPcopy Index your code
hub / github.com/dask/dask / conj

Method conj

dask/array/_array_expr/_collection.py:600–611  ·  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

598 return imag(self)
599
600 def conj(self):
601 """Complex-conjugate all elements.
602
603 Refer to :func:`dask.array.conj` for full documentation.
604
605 See Also
606 --------
607 dask.array.conj : equivalent function
608 """
609 from dask.array._array_expr._ufunc import conj
610
611 return conj(self)
612
613 def clip(self, min=None, max=None):
614 """Return an array whose values are limited to ``[min, max]``.

Callers 4

test_arithmeticFunction · 0.45
test_vdotFunction · 0.45
test_complexFunction · 0.45
test_cholesky_complexFunction · 0.45

Calls

no outgoing calls

Tested by 4

test_arithmeticFunction · 0.36
test_vdotFunction · 0.36
test_complexFunction · 0.36
test_cholesky_complexFunction · 0.36