How to load this .dat file into matlab?
Show older comments
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 Comment
saurav suman
on 13 Mar 2015
Try this
[FileName,PathName] = uigetfile('ECG.mat');
localdir = dir;
cd(PathName);
load(FileName);
cd('C:\Users\username\Documents\MATLAB\cd');
Accepted Answer
More Answers (3)
saurav suman
on 13 Mar 2015
Try this
[FileName,PathName] = uigetfile('ECG.mat');
localdir = dir;
cd(PathName);
load(FileName);
cd('C:\Users\username\Documents\MATLAB\cd');
Paulo Silva
on 21 Mar 2011
0 votes
Walter Roberson
on 21 Mar 2011
0 votes
You will not be able to load that file using the "load" command!
Categories
Find more on Standard File Formats in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!