How to open several txt files?

1 回表示 (過去 30 日間)
Lilya
Lilya 2017 年 8 月 13 日
コメント済み: KSSV 2017 年 8 月 13 日
Hello everyone,
thank you in advance for the help. I would like to open several text files (loop) named by the following: RDLm_RABG_2017_07_01_0000.ruv
RDLm_RABG_2017_07_01_0100.ruv
RDLm_RABG_2017_07_01_0300.ruv . . . etc
then how to read them and extract the information all have the same header and the parameters to extract ( let's say the first 3 column)
thank you once again.

採用された回答

KSSV
KSSV 2017 年 8 月 13 日
files = dir('*.txt');
nfiles = length(files);
data = cell(nfiles,1);
for i = 1 : nfiles
fid = fopen(files(i).name);
% read data
fclose(fid);
end
  6 件のコメント
Lilya
Lilya 2017 年 8 月 13 日
Ok. Thank you so much
KSSV
KSSV 2017 年 8 月 13 日
Thanking is accepting the answer...

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLoops and Conditional Statements についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by