(x, y, atol, rtol)
| 2328 | array([False, True]) |
| 2329 | """ |
| 2330 | def within_tol(x, y, atol, rtol): |
| 2331 | with errstate(invalid='ignore'), _no_nep50_warning(): |
| 2332 | return less_equal(abs(x-y), atol + rtol * abs(y)) |
| 2333 | |
| 2334 | x = asanyarray(a) |
| 2335 | y = asanyarray(b) |
no test coverage detected