problem to load txt file with multibled data and textdata
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Touts Touts
am 12 Apr. 2019
Beantwortet: Walter Roberson
am 13 Apr. 2019
Please who i can load the folowing txt file
7 header lines to skipe
get the string (2 to 4 colomun) matrix and numerical matrix (1, 5 to 11 colomun)
22:52:48
Table: Out
AAAAA BBBBBBBBBB CCCCCCCC DDDDDDDDD EEEEEEE DD FF GG HH II RR
! ! ! ! ! !
9 KLM OooOooOoo Para 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 0.000000
9 KLM OooOooOoo Para 0.010000 -2.710E-07 0.000000 0.000000 0.000000 0.000000 0.000000
9 KLM OooOooOoo Para 0.020000 -1.517E-06 0.000000 0.000000 0.000000 0.000000 0.000000
9 KLM OooOooOoo Para 0.030000 -4.848E-06 0.000000 0.000000 0.000000 0.000000 0.000000
3 Kommentare
Akzeptierte Antwort
Walter Roberson
am 13 Apr. 2019
filename = 'Mytxt.txt';
opt = detectImportOptions(filename);
t = readtable(filename, opt);
col2 = t{:,2}; %cell array of character vectors such as KLM
col3 = t{:,3}; %cell array of character vectors such as ooooOooo
col4 = t{:,4}; %cell array of character vectors such as Para
numbers = t{:,[1 5:11]}; %numeric array
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Data Type Identification finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!