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 件のコメント

saurav suman
saurav suman 2015 年 3 月 13 日
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 日

0 投票

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

その他の回答 (3 件)

saurav suman
saurav suman 2015 年 3 月 13 日

1 投票

Try this
[FileName,PathName] = uigetfile('ECG.mat');
localdir = dir;
cd(PathName);
load(FileName);
cd('C:\Users\username\Documents\MATLAB\cd');
Paulo Silva
Paulo Silva 2011 年 3 月 21 日

0 投票

1 件のコメント

Raviteja
Raviteja 2011 年 3 月 21 日
Not yet solved! Still I am unable to load that.dat file. I need the code to load it.

サインインしてコメントする。

Walter Roberson
Walter Roberson 2011 年 3 月 21 日

0 投票

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

カテゴリ

ヘルプ センター および File ExchangeMATLAB についてさらに検索

質問済み:

2011 年 3 月 21 日

回答済み:

2015 年 3 月 13 日

Community Treasure Hunt

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

Start Hunting!

Translated by