@@ -47,9 +47,9 @@ More details can be found in SciPy 2017 conference proceedings:
4747
4848---
4949
50- It implements the following functions:
50+ ` mkl_fft ` implements the following functions:
5151
52- ### Complex transforms, similar to those in ` scipy.fftpack ` :
52+ ### Complex transforms, similar to those in ` scipy.fft ` :
5353
5454` fft(x, n=None, axis=-1, overwrite_x=False) `
5555
@@ -65,13 +65,13 @@ It implements the following functions:
6565
6666### Real transforms
6767
68- ` rfft (x, n=None, axis=-1, overwrite_x=False)` - real 1D Fourier transform, like ` scipy.fftpack.rfft `
68+ ` rfftpack (x, n=None, axis=-1, overwrite_x=False)` - real 1D Fourier transform, like ` scipy.fftpack.rfft `
6969
70- ` rfft_numpy (x, n=None, axis=-1)` - real 1D Fourier transform, like ` numpy.fft.rfft `
70+ ` rfft (x, n=None, axis=-1)` - real 1D Fourier transform, like ` numpy.fft.rfft `
7171
72- ` rfft2_numpy (x, s=None, axes=(-2,-1))` - real 2D Fourier transform, like ` numpy.fft.rfft2 `
72+ ` rfft2 (x, s=None, axes=(-2,-1))` - real 2D Fourier transform, like ` numpy.fft.rfft2 `
7373
74- ` rfftn_numpy (x, s=None, axes=None)` - real ND Fourier transform, like ` numpy.fft.rfftn `
74+ ` rfftn (x, s=None, axes=None)` - real ND Fourier transform, like ` numpy.fft.rfftn `
7575
7676... and similar ` irfft* ` functions.
7777
0 commit comments