フィルターのクリア

How to read files in ascending order based on the maximum value of the file from subfolders?

1 回表示 (過去 30 日間)
I have table.txt files in the subfolders of a directory. First I want to find the maximum value of a particular coulmn of the table.txt file. Then, I want to read these files in an ascening order based on these values. I can read the files. But unable to sort the files in the way I want to process the data further. Can somebody help me out?
allTables = dir('**/table.txt');
tablemax =zeros();
for ii = 1:numel(allTables)
thisFolder = allTables(ii).folder;
inFile = fullfile(thisFolder, allTables(ii).name);
A = readmatrix(inFile);
% do stuff ...
I=max(A(:,13));
tablemax(1:length(I),ii)=I;
end
iinew=sort(tablemax);

採用された回答

Stephen23
Stephen23 2022 年 11 月 19 日
編集済み: Stephen23 2022 年 11 月 20 日
S = dir('**/table.txt');
for k = 1:numel(S)
F = fullfile(S(k).folder, S(k).name);
A = readmatrix(F);
% do stuff ...
I = max(A(:,13));
S(k).max = I;
end
[~,X] = sort([S.max]);
S = S(X)
  3 件のコメント
Sateesh Kandukuri
Sateesh Kandukuri 2022 年 11 月 20 日
Stephen, thanks a million. It's working.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeFile Operations についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by