problem to load txt file with multibled data and textdata

1 visualización (últimos 30 días)
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 comentarios
Touts Touts
Touts Touts el 13 de Abr. de 2019
Plase the file (Mytxt.txt) is attached
Thanks
Touts Touts
Touts Touts el 13 de Abr. de 2019
Problem solved, another posed.
Thanks to all

Iniciar sesión para comentar.

Respuesta aceptada

Walter Roberson
Walter Roberson el 13 de Abr. de 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

Más respuestas (0)

Categorías

Más información sobre String Parsing en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by