-
Notifications
You must be signed in to change notification settings - Fork 72
/
CHANGES.txt
53 lines (44 loc) · 1.61 KB
/
CHANGES.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Changelog
0.2.2
maintenance release:
- resolved setup and build issues
- support for compilation using MSVC compiler
- updated documentation
- moved main repository to GitHub (https://github.com/nigma/pywt)
0.2.0
changes:
- 2D Wavelet Packet and Inverse Wavelet Packet Transforms
- 2D Stationary Wavelet Transform
- Single and double precision computations
- DWT and IDWT optimizations
- refactored Wavelet Packet code
0.1.6
changes:
- argument order changed for wavedec to be more consistent with other
functions. Now is (data, wavelet, *mode*, *level*).
- added 2D DWT and IDWT (dwt2, idwt2)
- added 2D multilevel transform - wavedec2 and waverec2
- added support for Python 2.5 (requires modified Pyrex, see the documentation)
- using Python memory management functions instead of C stdlib ones
fixes:
- rbior wavelets filters corrected
0.1.4
changes:
- Wavelet class can be subclassed
- requires NumPy, edit numerix.py to use with other numeric modules,
array.array is no more directly supported
- code cleanup & comments
- wavedec and waverec Pyrex code moved to pure Python multilevel.py
module
- doctesting doc examples
fixes:
- fixed swt for too high level value
- fixed bug in upcoef wrapper code for some take values
0.1.2
changes:
- support for custom filter banks
- now compiles without numpy installed
fixes:
- fixed handling of non-contiguous arrays
0.1.0
initial release