Azzera filtri
Azzera filtri

How to load this .dat file into matlab?

5 visualizzazioni (ultimi 30 giorni)
Raviteja
Raviteja il 21 Mar 2011
Risposto: saurav suman il 13 Mar 2015
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 Commento
saurav suman
saurav suman il 13 Mar 2015
Try this
[FileName,PathName] = uigetfile('ECG.mat');
localdir = dir;
cd(PathName);
load(FileName);
cd('C:\Users\username\Documents\MATLAB\cd');

Accedi per commentare.

Risposta accettata

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

Più risposte (3)

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

Paulo Silva
Paulo Silva il 21 Mar 2011
  1 Commento
Raviteja
Raviteja il 21 Mar 2011
Not yet solved! Still I am unable to load that.dat file. I need the code to load it.

Accedi per commentare.


Walter Roberson
Walter Roberson il 21 Mar 2011
You will not be able to load that file using the "load" command!

Community Treasure Hunt

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

Start Hunting!

Translated by