Skip to content

Commit 4edc66c

Browse files
committed
update CHaNGES.rst and README.md
1 parent 2c4340a commit 4edc66c

File tree

2 files changed

+23
-6
lines changed

2 files changed

+23
-6
lines changed

CHANGES.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22
mkl_fft changelog
33
=================
44

5+
1.3.13
6+
======
7+
8+
migrate from `setup.py` to `pyproject.toml`
9+
10+
includes support in virtual environment out of the box
11+
12+
the original `mkl_fft.rfft` and `mkl_fft.irfft` are renamed to `mkl_fft.rfftpack` and `mkl_fft.irfftpack`, since they
13+
replicate the behavior from the deprectaed `scipy.fftapck` module.
14+
15+
`mkl_fft.rfft_numpy`, `mkl_fft.irfft_numpy`, `mkl_fft.rfft2_numpy`, `mkl_fft.irfft2_numpy`, `mkl_fft.rfftn_numpy`
16+
and `mkl_fft.irfftn_numpy` are renamed to `mkl_fft.rfft`, `mkl_fft.irfft`, `mkl_fft.rfft2`, `mkl_fft.irfft2`, `mkl_fft.rfftn`
17+
and `mkl_fft.irfftn`, respectively. (consistent with `numpy.fft` and `scipy.fft` modules)
18+
19+
file `_scipy_fft_backend.py` is renamed to `_scipy_fft.py` since it replicates `scipy.fft` module (similar to file
20+
`_numpy_fft.py` which replicates `numpy.fft` module)
21+
522
1.3.11
623
======
724

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)