필터 지우기
필터 지우기

Loop variable for readtable arguments

조회 수: 15 (최근 30일)
vauntedmango
vauntedmango 2023년 1월 24일
댓글: Stephen23 2023년 1월 24일
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일
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개)

카테고리

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

태그

제품


릴리스

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by