(x, y)
| 2158 | |
| 2159 | |
| 2160 | def assert_arctan2_isnzero(x, y): |
| 2161 | assert_((ncu.arctan2(x, y) == 0 and np.signbit(ncu.arctan2(x, y))), "arctan(%s, %s) is %s, not -0" % (x, y, ncu.arctan2(x, y))) |
| 2162 | |
| 2163 | |
| 2164 | class TestArctan2SpecialValues: |
no test coverage detected