Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Help with textscan classifier
조회 수: 1 (최근 30일)
이전 댓글 표시
Hello,
Trying to extract data from a text file, the data is in the format:
Eu3+ 1 10.06037350 -4.673610300 -1.834337367
Currently I am trying C = textscan(fid,'%s%d8%f32%f32%f32');
However this returns: C = {1x1 cell} [1] [10.0604] [-4.6736] [-1.8343]
So can anyone tell me what classifier I would need for the Eu3+ entry?
Many thanks,
Tom
답변 (2개)
Neil Caithness
2013년 10월 24일
Your current output does seem to be what you want.
str = 'Eu3+ 1 10.06037350 -4.673610300 -1.834337367';
C = textscan(str,'%s%d8%f32%f32%f32')
C =
{1x1 cell} [1] [10.0604] [-4.6736] [-1.8343]
Look at the contents of the first cell:
C{1}
ans =
'Eu3+'
댓글 수: 0
Simon
2013년 10월 25일
Hi!
You can write
C{1} = char(C{1});
This way you get a character array with each line corresponding to an atom type.
Or you can create a new cell array from C
Cnew = cell(length(C{1}), 5);
% loop over all rows
for r = 1:length(C{1})
% loop over all columns
for c = 1:5
if c == 1
% atom type as string
Cnew {r, c} = char(C{c}(r));
else
Cnew {r, c} = C{c}(r);
end
end
end
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!