open and read a txt file

조회 수: 3 (최근 30일)
Rica
Rica 2013년 1월 29일
Hi!
%
for i=20:80
fileID = fopen(['Data_' num2str(i) '.txt']);
data{i,1} = textscan(fileID, '%s %s %s %d %d %d %d %f %f ');
fclose(fileID);
...
....
end
how could i skip reading some files. for exwmple i=22 and i=79? thank you

채택된 답변

Thorsten
Thorsten 2013년 1월 29일
for i = setdiff(20:80, [22 79])
  댓글 수: 1
Rica
Rica 2013년 1월 29일
great!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Low-Level File I/O에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by