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

Function angle

dask/array/ufunc.py:288–292  ·  view source on GitHub ↗
(x, deg=0)

Source from the content-addressed store, hash-verified

286
287@derived_from(np)
288def angle(x, deg=0):
289 deg = bool(deg)
290 if hasattr(x, "_elemwise"):
291 return x._elemwise(np.angle, x, deg)
292 return np.angle(x, deg=deg)
293
294
295@derived_from(np)

Callers

nothing calls this directly

Calls 1

_elemwiseMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…