problem to load txt file with multibled data and textdata

1 view (last 30 days)
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

Accepted Answer

Walter Roberson
Walter Roberson on 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

More Answers (0)

Products

Community Treasure Hunt

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

Start Hunting!