Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Help with textscan classifier
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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
Antworten (2)
Neil Caithness
am 24 Okt. 2013
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 Kommentare
Simon
am 25 Okt. 2013
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 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!