How to load this .dat file into matlab?
7 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
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
2011 年 3 月 21 日
http://www.physionet.org/physiotools/matlab/wfdb-swig-matlab/
0 件のコメント
その他の回答 (3 件)
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');
0 件のコメント
Walter Roberson
2011 年 3 月 21 日
You will not be able to load that file using the "load" command!
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で ECG / EKG についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!