Loop variable for readtable arguments

I am trying to read several tables within the same directory (currently in .txt format). The file names are as follows:
0.0.txt
0.2.txt
0.4.txt
and so on until 2.0.txt
How can I implement the loop feature to tell MATLAB to read all the files starting from 0.0.txt up to 2.0.txt with the value before '.txt' increasing by 0.2 each time?

 採用された回答

KSSV
KSSV 2023 年 1 月 24 日

0 投票

txtFiles = dir('*.txt') ;
N = length(txtFiles) ;
for i = 1:N
T = readtable(txtFiles(i).name)
end

1 件のコメント

Stephen23
Stephen23 2023 年 1 月 24 日
And if you want to keep all of the imported data:
S = dir('*.txt');
for k = 1:numel(S)
S(k).data = readtable(S(k).name);
end

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

その他の回答 (0 件)

カテゴリ

ヘルプ センター および File ExchangeLoops and Conditional Statements についてさらに検索

製品

リリース

R2022a

タグ

質問済み:

2023 年 1 月 24 日

コメント済み:

2023 年 1 月 24 日

Community Treasure Hunt

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

Start Hunting!

Translated by