How to load this .dat file into matlab?
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Raviteja
am 21 Mär. 2011
Beantwortet: saurav suman
am 13 Mär. 2015
How to load the .dat file http://www.physionet.org/physiobank/database/ptbdb/patient001/s0010_re.dat into matlab?
When I load this following error appearing
>>X= load('s0010_re.dat');
??? Error using ==> load
Unknown text on line number 1 of ASCII file
C:\Users\Raviteja\Documents\MATLAB\s0010_re.dat
"
1 Kommentar
saurav suman
am 13 Mär. 2015
Try this
[FileName,PathName] = uigetfile('ECG.mat');
localdir = dir;
cd(PathName);
load(FileName);
cd('C:\Users\username\Documents\MATLAB\cd');
Akzeptierte Antwort
Timothy Felty
am 21 Mär. 2011
http://www.physionet.org/physiotools/matlab/wfdb-swig-matlab/
0 Kommentare
Weitere Antworten (3)
saurav suman
am 13 Mär. 2015
Try this
[FileName,PathName] = uigetfile('ECG.mat');
localdir = dir;
cd(PathName);
load(FileName);
cd('C:\Users\username\Documents\MATLAB\cd');
0 Kommentare
Walter Roberson
am 21 Mär. 2011
You will not be able to load that file using the "load" command!
0 Kommentare
Siehe auch
Kategorien
Mehr zu Standard File Formats finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!