@@ -47,9 +47,9 @@ More details can be found in SciPy 2017 conference proceedings:
47
47
48
48
---
49
49
50
- It implements the following functions:
50
+ ` mkl_fft ` implements the following functions:
51
51
52
- ### Complex transforms, similar to those in ` scipy.fftpack ` :
52
+ ### Complex transforms, similar to those in ` scipy.fft ` :
53
53
54
54
` fft(x, n=None, axis=-1, overwrite_x=False) `
55
55
@@ -65,13 +65,13 @@ It implements the following functions:
65
65
66
66
### Real transforms
67
67
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 `
69
69
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 `
71
71
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 `
73
73
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 `
75
75
76
76
... and similar ` irfft* ` functions.
77
77
0 commit comments