Running the Same code for Multiple Files in a Folder

5 ビュー (過去 30 日間)
Sameer Sayyad
Sameer Sayyad 2021 年 6 月 17 日
回答済み: Chunru 2021 年 6 月 17 日
Is it possible to use the same code for Multiple Files in a Folder and save its output at particular location.

回答 (1 件)

Chunru
Chunru 2021 年 6 月 17 日
Here is a schetch of the solution:
fn = dir('a*.txt'); % obtain the file information 'a*.txt'. make your own modification
for i=1:length(fn) % loop through all the selected files in the folder
filename = fn(i).name;
% Perform any operation depending on the filename
% Save the results anaywhere you like
end

カテゴリ

Help Center および File ExchangeAdding custom doc についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by