(self)
| 118 | signal.fft3d) |
| 119 | |
| 120 | def testIFFT(self): |
| 121 | self._VerifyFftMethod(INNER_DIMS_1D, lambda x: x, np.fft.ifft, |
| 122 | signal.ifft) |
| 123 | |
| 124 | def testIFFT2D(self): |
| 125 | self._VerifyFftMethod(INNER_DIMS_2D, lambda x: x, np.fft.ifft2, |
nothing calls this directly
no test coverage detected