필터 지우기
필터 지우기

How to load this .dat file into matlab?

조회 수: 5 (최근 30일)
Raviteja
Raviteja 2011년 3월 21일
답변: saurav suman 2015년 3월 13일
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일
http://www.physionet.org/physiotools/matlab/wfdb-swig-matlab/

추가 답변 (3개)

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');

Paulo Silva
Paulo Silva 2011년 3월 21일
  댓글 수: 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일
You will not be able to load that file using the "load" command!

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by