Skip to content

Commit dcc3cbc

Browse files
committed
0.0.9.6.5
update
1 parent c4c9d83 commit dcc3cbc

26 files changed

+3000
-1296
lines changed

MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ include spkit/__init__.py
77
include spkit/data/EEG16SecData.pkl
88
include spkit/data/primitive_polynomials_GF2_dict.txt
99
include spkit/eeg/Standard_1020.csv
10+
include spkit/eeg/*.csv
11+
include spkit/eeg/*.txt
12+
include spkit/eeg/*.png
1013

1114
recursive-include spkit *.py
1215
recursive-include spkit *.txt

README.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ pip install spkit
4545
```
4646
pip install spkit --upgrade
4747
```
48-
48+
# New in 0.0.9.7:
49+
## MEA Processing Toolkit
4950

5051
# New in 0.0.9.5:
5152
## MEA Processing Toolkit
@@ -166,7 +167,7 @@ pip install spkit --upgrade
166167
# Contacts:
167168

168169
* **Nikesh Bajaj**
169-
* https://nikeshbajaj.in
170+
* http://nikeshbajaj.in
170171
* n.bajaj[AT]qmul.ac.uk, n.bajaj[AT]imperial[dot]ac[dot]uk
171172
### Imperial College London
172173
______________________________________

Version

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.9.6
1+
0.0.9.6.7

spkit/__init__.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from __future__ import absolute_import, division, print_function
22

33
name = "Signal Processing toolkit"
4-
__version__ = '0.0.9.6'
4+
__version__ = '0.0.9.6.7'
55
__author__ = 'Nikesh Bajaj'
66

77

@@ -37,6 +37,8 @@
3737
from .core.processing import (phase_map,amplitude_equalizer,phase_map_reconstruction,dominent_freq,dominent_freq_win,clean_phase,mean_minSE,minMSE)
3838
from .core.processing import (create_signal_1d, create_signal_2d,spatial_filter_dist, spatial_filter_adj)
3939
from .core.matDecomposition import (ICA, SVD,infomax)
40+
41+
from .core.processing import (Wavelet_decompositions)
4042
##wavelet_filtering, wavelet_filtering_win, WPA_coeff, WPA_temporal, WPA_plot
4143

4244
# Advanced
@@ -63,6 +65,7 @@
6365
from .utils_misc import io_utils as io
6466
from .utils_misc import tf_utils
6567
from .utils_misc import utils as utils_dev
68+
from .utils_misc.borrowed import resize
6669
from .data import load_data
6770

6871
#from .mea.mea_processing import *

0 commit comments

Comments
 (0)