├── ECGData.zip └── README.md /ECGData.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathworks/physionet_ECG_data/0ad9581e1e43b6d4fca031a36de649c2d2a3e86d/ECGData.zip -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # physionet_ECG_data 2 | This repository contains human electrocardiogram data (ECG) data used in MathWorks' Wavelet Toolbox machine and deep learning examples. 3 | This data is sourced from https://www.physionet.org/. In keeping with PhysioNet's copying policy, the ECGData.zip file contains a 4 | .txt file, Modified_physionet_data.txt, which contains the specific attributions for the orignal PhysioNet source databases as well as 5 | a description of all data modifications. 6 | 7 | Important Note: 8 | Examples in some versions of MATLAB reference the downloaded .zip file in text and code as ending in ```-master.zip```. To avoid errors in 9 | execution, replace instances of ```-master.zip``` in code with ```-main.zip```. 10 | 11 | For example: 12 | 13 | ```>>unzip(fullfile(tempdir,'physionet_ECG_data-main.zip'),tempdir)``` 14 | 15 | ```>>unzip(fullfile(tempdir,'physionet_ECG_data-main','ECGData.zip'),...``` 16 | 17 | ``` fullfile(tempdir,'ECGData'))``` 18 | 19 | If you use ```git clone https://github.com/mathworks/physionet_ECG_data``` to download the data, the .zip file is "ECGData.zip" in your 20 | physionet_ECG_data folder. 21 | 22 | 23 | 24 | --------------------------------------------------------------------------------