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

Function _sqrt

dask/array/reductions.py:690–693  ·  view source on GitHub ↗
(a)

Source from the content-addressed store, hash-verified

688
689
690def _sqrt(a):
691 if isinstance(a, np.ma.masked_array) and not a.shape and a.mask.all():
692 return np.ma.masked
693 return np.sqrt(a)
694
695
696def safe_sqrt(a):

Callers 1

safe_sqrtFunction · 0.85

Calls 1

allMethod · 0.45

Tested by

no test coverage detected