How to read file '100.dat' and '100.atr' of MIT BIH DATABASE (PHYSIONET)?
Mostra commenti meno recenti
Hi peoples,
I would like of know how do for read the files DATABASE (MIT BIH DATABASE). The own provides an script for read, but gives error. The script is: rddata.m site: http://www.physionet.org/physiotools/matlab/rddata.m. Could anyone help me?
Thanks
1 Commento
Reid Kostenuk
il 11 Nov 2016
I had the same problem. You have to precisely specify the file path. You can read about specifying file paths here... https://www.mathworks.com/help/matlab/matlab_env/specify-file-names.html
Risposta accettata
Più risposte (3)
Martin Paralic
il 25 Gen 2019
Modificato: Martin Paralic
il 25 Gen 2019
3 voti
% use WFDB Toolbox for MATLAB and Octave from
% https://www.physionet.org/physiotools/matlab/wfdb-app-matlab/
% First, ADD PATH in Matlab enviroment where your data are stored (100.dat, 100.hea, 100.atr)
% use function rdsamp() to read samples
% [signal,Fs,tm]=rdsamp(recordName,signaList,N,N0,rawUnits,highResolution)
[signal, fs, tm] = rdsamp('100');
% to read annotation use function rdann()
% [ann,anntype,subtype,chan,num,comments]=rdann(recordName, annotator, C, N, N0, AT)
[ann, anntype, subtype, chan, num, comments] = rdann('100','atr');
1 Commento
Walter Roberson
il 13 Gen 2023
That WFDB location appears to now redirect to
Vinícius
il 30 Lug 2013
1 voto
1 Commento
Matt Kindig
il 31 Lug 2013
Based on the error message, it sounds like fopen() failed. Are you sure that you're passing in the correct filename to fopen().
Try this:
dbstop if error %turn on breakpoints at error
and now run your code. What is the value of the filename variable passed into the fopen() statement? Is this a valid file? Remember, if the file is not local to your working directory or is not on your path, you need to include the full (absolute) path for the file.
laidi kamel
il 10 Mag 2015
0 voti
hi, i tried to read the files 100.data and 100.atr using the fucntion rddaat.m but it doesn't work . please if you can help me to read this file.
Categorie
Scopri di più su Large Files and Big Data in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!