(self)
| 300 | self._test_mtsame(np.fft.ifft, a) |
| 301 | |
| 302 | def test_rfft(self): |
| 303 | a = np.ones(self.input_shape) |
| 304 | self._test_mtsame(np.fft.rfft, a) |
| 305 | |
| 306 | def test_irfft(self): |
| 307 | a = np.ones(self.input_shape) * 1+0j |
nothing calls this directly
no test coverage detected