reading data from a file which include symbols.

2 ビュー (過去 30 日間)
anton fernando
anton fernando 2015 年 5 月 27 日
コメント済み: anton fernando 2015 年 5 月 28 日
I need to read the first column of the file attached and the last 3 digits of each line as a column. Appreciate any help.

採用された回答

Walter Roberson
Walter Roberson 2015 年 5 月 27 日
t = regexp(fileread('Dst.txt'), '(\r)?\n', 'split');
firstcol = regexp(t, '^\S+', 'match');
last3 = regexp(t, '...$', 'match');
first_last = [firstcol(:), last3(:)];
first_last{1,1}, first_last{1,2} is the pair for the first line
  1 件のコメント
anton fernando
anton fernando 2015 年 5 月 28 日
Thank you very much. It works. but I do not understand what the code does. Can you put comments on it so that I can understand it. Appreciate it.

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeData Import and Analysis についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by