フィルターのクリア

How to perform arithmetic operation that would affect all variables in a folder at once

1 回表示 (過去 30 日間)
There are 5 variables in a folder (crate1, crate2, crate3, crate4, crate5). Each of these variables have 3 sub-variables inside them. The 3 sub-variables have same names but different values, for all the variables. For example, crate1 has month, time, date. Crate2 also has month, time, date. And so on up to crate5... The task needed is to divide sub-variables (only month and time) by 0.5, for all the variables crate1 to crate5... Instead of doing it manually one after other, is there a way I could do for all at same time?
  7 件のコメント
Stephen23
Stephen23 2021 年 12 月 29 日
"The task needed is to divide sub-variables (only month and time) by 0.5..."
Multiplying by two is probably clearer.
Ayobami Meadows
Ayobami Meadows 2021 年 12 月 29 日
Truly correct. But also understand that these are not the actual values of the task. I just create these samples to clearly demonstrate what I need to fulfill the main task with the original values.

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

採用された回答

Matt J
Matt J 2021 年 12 月 28 日
編集済み: Matt J 2021 年 12 月 28 日
For scalar variables,
S=dir('crate*.mat');
month = arrayfun(@(s) load(s.name).month, S)/0.5;
time = arrayfun(@(s) load(s.name).time, S)/0.5;
EDIT: For non-scalar variables,
S=dir('crate*.mat');
month = cell2mat( arrayfun(@(s) load(s.name).month, S','uni',0) )/0.5;
time = cell2mat(arrayfun(@(s) load(s.name).time, S','uni',0) )/0.5;
  8 件のコメント

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeDynamic System Models についてさらに検索

製品


リリース

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by