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

Function isclose

dask/array/routines.py:2050–2052  ·  view source on GitHub ↗
(arr1, arr2, rtol=1e-5, atol=1e-8, equal_nan=False)

Source from the content-addressed store, hash-verified

2048
2049@derived_from(np)
2050def isclose(arr1, arr2, rtol=1e-5, atol=1e-8, equal_nan=False):
2051 func = partial(np.isclose, rtol=rtol, atol=atol, equal_nan=equal_nan)
2052 return elemwise(func, arr1, arr2, dtype="bool")
2053
2054
2055@derived_from(np)

Callers 1

allcloseFunction · 0.85

Calls 1

elemwiseFunction · 0.90

Tested by

no test coverage detected