'Unable to open file' error with importdata

조회 수: 52 (최근 30일)
Max-Henri Froger
Max-Henri Froger 2020년 8월 12일
댓글: Max-Henri Froger 2020년 8월 12일
I am trying to import data from a .txt file with the same structure as below
with the code below, I am looking for a .txt file and I try to save each column in a matlab file but matlab tells me 'Unable to open file'
[filename,pathname]=uigetfile({'*.fl.txt' 'Torque file (*.fl.txt)'},'Select a torque curve');
if filename ~= 0
Spill = importdata(filename);
extracted=Spill.data
CDC_N=extracted(:,1)
CDC_Torque=extracted(:,2)
save('CDC.mat','CDC_N','CDC_Torque');
end
if anyone could help me, I'd be grateful.
thanks

채택된 답변

per isakson
per isakson 2020년 8월 12일
편집: per isakson 2020년 8월 12일
Replacing
Spill = importdata(filename);
with
Spill = importdata( fullfile( pathname, filename );
may help.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Import and Analysis에 대해 자세히 알아보기

제품


릴리스

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by