How can i use sscanf values?

조회 수: 1 (최근 30일)
Marco
Marco 2014년 2월 6일
댓글: Walter Roberson 2014년 2월 6일
Hello there,
i have a code like this:
if tline(1) == 'e'
[data,count]= sscanf(tline,'%c, %d, %d, %d, %d, %d, %d, %d, %d',inf);
if count == 7
fprintf(' element %d : tipo %d , material %d , seccao %d , no I %d , no J %d\n',...
data(2),data(3),data(4),data(5),data(6),data(7));
nelementos= nelementos+1;
elementos(1,data(2))= data(3);
elementos(2,data(2))= data(4);
elementos(3,data(2))= data(5);
elementos(4,data(2))= data(6);
elementos(5,data(2))= data(7);
end
end
that read a file like this:
e, 1, 1, 2, 3, 1, 1, 1
e, 2, 2, 3, 1, 1, 1
e, 3, 3, 4, 1, 1, 1,1
the file can have the Var 'e' how much is possible.
how can i use the value of each and i can i now and use de number of e rows that appear me?

채택된 답변

Walter Roberson
Walter Roberson 2014년 2월 6일
I do not understand what you mean by "how can i use the value of each" ?
The count of the number of lines is your nelementos variable.
  댓글 수: 2
Marco
Marco 2014년 2월 6일
Sorry my english.
i mean, how can I use the data for each line of 'e', those 1 , 2, 3...
Walter Roberson
Walter Roberson 2014년 2월 6일
You stored them as columns in elementos.
elementos(:,K)
would be the list of values for the K'th line.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Vector Volume Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by