(self)
| 2174 | assert_almost_equal(ncu.arctan2(np.NZERO, np.NZERO), -np.pi) |
| 2175 | |
| 2176 | def test_zero_pzero(self): |
| 2177 | # atan2(+-0, +0) returns +-0. |
| 2178 | assert_arctan2_ispzero(np.PZERO, np.PZERO) |
| 2179 | assert_arctan2_isnzero(np.NZERO, np.PZERO) |
| 2180 | |
| 2181 | def test_zero_negative(self): |
| 2182 | # atan2(+-0, x) returns +-pi for x < 0. |
nothing calls this directly
no test coverage detected