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 个评论

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

请先登录,再进行评论。

 采纳的回答

Timothy Felty
Timothy Felty 2011-3-21
http://www.physionet.org/physiotools/matlab/wfdb-swig-matlab/

更多回答(3 个)

Try this
[FileName,PathName] = uigetfile('ECG.mat');
localdir = dir;
cd(PathName);
load(FileName);
cd('C:\Users\username\Documents\MATLAB\cd');
Walter Roberson
Walter Roberson 2011-3-21
You will not be able to load that file using the "load" command!

类别

帮助中心File Exchange 中查找有关 MATLAB 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by