(self)
| 113 | signal.fft2d) |
| 114 | |
| 115 | def testFFT3D(self): |
| 116 | self._VerifyFftMethod(INNER_DIMS_3D, lambda x: x, |
| 117 | lambda x: np.fft.fftn(x, axes=(-3, -2, -1)), |
| 118 | signal.fft3d) |
| 119 | |
| 120 | def testIFFT(self): |
| 121 | self._VerifyFftMethod(INNER_DIMS_1D, lambda x: x, np.fft.ifft, |
nothing calls this directly
no test coverage detected