How to load this .dat file 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

Try this
[FileName,PathName] = uigetfile('ECG.mat');
localdir = dir;
cd(PathName);
load(FileName);
cd('C:\Users\username\Documents\MATLAB\cd');

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Timothy Felty
Timothy Felty am 21 Mär. 2011

0 Stimmen

http://www.physionet.org/physiotools/matlab/wfdb-swig-matlab/

Weitere Antworten (3)

saurav suman
saurav suman am 13 Mär. 2015

1 Stimme

Try this
[FileName,PathName] = uigetfile('ECG.mat');
localdir = dir;
cd(PathName);
load(FileName);
cd('C:\Users\username\Documents\MATLAB\cd');
Paulo Silva
Paulo Silva am 21 Mär. 2011

0 Stimmen

1 Kommentar

Raviteja
Raviteja am 21 Mär. 2011
Not yet solved! Still I am unable to load that.dat file. I need the code to load it.

Melden Sie sich an, um zu kommentieren.

Walter Roberson
Walter Roberson am 21 Mär. 2011

0 Stimmen

You will not be able to load that file using the "load" command!

Kategorien

Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by