Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
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)
288
def
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
_elemwise
Method · 0.45
Tested by
no test coverage detected