How to load this .dat file into matlab?
9 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Raviteja
el 21 de Mzo. de 2011
Respondida: saurav suman
el 13 de Mzo. de 2015
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 comentario
saurav suman
el 13 de Mzo. de 2015
Try this
[FileName,PathName] = uigetfile('ECG.mat');
localdir = dir;
cd(PathName);
load(FileName);
cd('C:\Users\username\Documents\MATLAB\cd');
Respuesta aceptada
Timothy Felty
el 21 de Mzo. de 2011
http://www.physionet.org/physiotools/matlab/wfdb-swig-matlab/
0 comentarios
Más respuestas (3)
saurav suman
el 13 de Mzo. de 2015
Try this
[FileName,PathName] = uigetfile('ECG.mat');
localdir = dir;
cd(PathName);
load(FileName);
cd('C:\Users\username\Documents\MATLAB\cd');
0 comentarios
Walter Roberson
el 21 de Mzo. de 2011
You will not be able to load that file using the "load" command!
0 comentarios
Ver también
Categorías
Más información sobre ECG / EKG en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!