problem to load txt file with multibled data and textdata

조회 수: 1 (최근 30일)
Touts Touts
Touts Touts 2019년 4월 12일
답변: Walter Roberson 2019년 4월 13일
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
Touts Touts
Touts Touts 2019년 4월 13일
Plase the file (Mytxt.txt) is attached
Thanks
Touts Touts
Touts Touts 2019년 4월 13일
Problem solved, another posed.
Thanks to all

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2019년 4월 13일
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개)

카테고리

Help CenterFile Exchange에서 String Parsing에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by