How to read a special column from a file?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Hy I have this file 'FAR.RSM' produced by another software, now i want MATLAB to read the numbers under column of 'FOE' (you see it in the file) to be used as an input for other calculations, i use this code but it gives me this error: 'Unrecognized variable name 'FOE''. i forgot to say that its columns' may change in order and number. the loaded file here is in 'txt' format and the one i have is in 'RSM' format, it couldn't be loaded here so i changed it in 'txt' format.
opt = detectImportOptions('FAR.RSM','FileType','text'); T = readtable('FAR.RSM', opt); GOE = T.FOE(end)
Great thanks.
2 Kommentare
Antworten (1)
madhan ravi
am 22 Okt. 2018
Bearbeitet: madhan ravi
am 22 Okt. 2018
fid = fopen('FAR.txt')
f= textscan(fid,'%s ' , 'delimiter','\n')
fclose(fid)
c=f{1,1}(10:16)
c=str2num(cell2mat(c))
c=c(:,3) %reads third column
4 Kommentare
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!