-
Notifications
You must be signed in to change notification settings - Fork 79
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Alexandr Kuvaev
committed
Dec 21, 2017
1 parent
24fc403
commit 2db31cd
Showing
2 changed files
with
33 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
# Release 0.2.0 | ||
|
||
## Major Features And Improvements | ||
* ``load`` method now supports new signal formats: | ||
* DICOM | ||
* EDF | ||
* wav | ||
* ``meta`` component structure has changed - now it always contains a number of predefined keys. | ||
* Added channels processing methods: | ||
* `EcgBatch.keep_channels` | ||
* `EcgBatch.drop_channels` | ||
* `EcgBatch.rename_channels` | ||
* Added `apply_to_each_channel` method. | ||
* Added complex ECG transformations: | ||
* Fourier-based transformations: | ||
* `EcgBatch.fft` | ||
* `EcgBatch.ifft` | ||
* `EcgBatch.rfft` | ||
* `EcgBatch.irfft` | ||
* `EcgBatch.spectrogram` | ||
|
||
## Breaking Changes to the API | ||
* `apply_transform` method's signature has changed. | ||
* `update` method has been deleted. | ||
* `replace_labels` method has been renamed to `rename_labels`. | ||
* `slice_signal` method has been renamed to `slice_signals`. | ||
* `ravel` method has been renamed to `unstack_signals`. | ||
|
||
|
||
# Release 0.1.0 | ||
|
||
Initial release of CardIO. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
from . import dataset # pylint: disable=wildcard-import | ||
|
||
|
||
__version__ = '0.1.0' | ||
__version__ = '0.2.0' |