(self)
| 126 | signal.ifft2d) |
| 127 | |
| 128 | def testIFFT3D(self): |
| 129 | self._VerifyFftMethod(INNER_DIMS_3D, lambda x: x, |
| 130 | lambda x: np.fft.ifftn(x, axes=(-3, -2, -1)), |
| 131 | signal.ifft3d) |
| 132 | |
| 133 | def testRFFT(self): |
| 134 |
nothing calls this directly
no test coverage detected