17
0

Accepting request 952001 from home:apersaud:branches:devel:languages:python:numeric

update to latest version

OBS-URL: https://build.opensuse.org/request/show/952001
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-PyWavelets?expand=0&rev=13
This commit is contained in:
2022-02-07 09:26:55 +00:00
committed by Git OBS Bridge
parent db80258d7f
commit 6e26871eec
4 changed files with 45 additions and 9 deletions

View File

@@ -1,3 +1,39 @@
-------------------------------------------------------------------
Mon Feb 7 03:26:25 UTC 2022 - Arun Persaud <arun@gmx.de>
- specfile:
* update copyright year
- update to version 1.2.0:
* New features
+ There is a new series of multilevel stationary wavelet
transforms (mra, mra2 and mran) suited for multiresolution
analysis of 1D, 2D or nD signals, respectively. This MRA
analysis is also known as the additive wavelet decomposition
because the corresponding inverse functions (imra, imra2 or
imran) reconstruct the original signal by simple addition of the
components. These are a good alternative to the use of the
existing SWT functions when it is important to have features
aligned across wavelet scales (see the new demo in
demo/mra_vs_swt.py).
+ There is now an n-dimensional implementation available for the
wavelet packet transforms (see class WaveletPacketND).
* Backwards incompatible changes
+ The image returned by pywt.data.camera has been replaced by a
similar, CC0-licensed image because the original image was
determined to only be licensed for non-commercial use. Any users
who still need the prior camera image for non-commercial use can
find it many places online by performing a web search for
"cameraman test image".
* Bugs Fixed
+ Add input length check in dwt_single for reflect modes.
+ Demos were updated for compatibility with recent Matplotlib
versions.
+ Removed deprecated import from imp.
* Other changes
+ PyWavelets has dropped support for Python 3.5 and 3.6 in this
release.
-------------------------------------------------------------------
Mon Feb 15 23:15:43 UTC 2021 - Ben Greiner <code@bnavigator.de>