(x, y)
| 2113 | |
| 2114 | |
| 2115 | def assert_hypot_isnan(x, y): |
| 2116 | with np.errstate(invalid='ignore'): |
| 2117 | assert_(np.isnan(ncu.hypot(x, y)), |
| 2118 | "hypot(%s, %s) is %s, not nan" % (x, y, ncu.hypot(x, y))) |
| 2119 | |
| 2120 | |
| 2121 | def assert_hypot_isinf(x, y): |
no test coverage detected