Using index to name variables

55 ビュー (過去 30 日間)
Lukas Netzer
Lukas Netzer 2021 年 5 月 12 日
コメント済み: Lukas Netzer 2021 年 5 月 13 日
I'm running a script with a index containing:
t{1} = Location1;
t{2} = Location2;
t{3} = Location3;
tt{1} = "Location1";
tt{2} = "Location2";
tt{3} = "Location3";
t's are tables. Now the actual script does e.g. this:
for x = 1:1:size(t{n})
if t{n}.var1(x) == 0
a_tt{n}(x) = b_tt{n}(x) / t{n}.var2(x);
if t{n}.var2(x) == 0
a_tt{n}(x) = 0;
end
As can be seen above I am trying to get a_Location1 and b_Location2 - but it does not work that way. Is there a smooth way to get a_location1/2/3 and b_location1/2/3 using the index?
It's for a lot of lines in the script, so some way without doing it by hand, would be nice!
Thanks for your help!
  2 件のコメント
Lukas Netzer
Lukas Netzer 2021 年 5 月 12 日
one solution that would work is:
str1 = "a_" + tt{n};
str2 = "b_" + tt{n};
But as stated above, I have lots of those variables, is there maybe a better way?
Rik
Rik 2021 年 5 月 12 日
Why do you want numbered variables? You shouldn't store data in a variable name.

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

採用された回答

Jan
Jan 2021 年 5 月 12 日
Do not create variables names dynamically. This would store information in the names, where it is hard to access. Use the values of the variables instead.
You can use dynamic field names of structs:
a = struct()
for x = 1:1:size(t{n})
if t{n}.var1(x) == 0
a.(tt{n})(x) = b_tt{n}(x) / t{n}.var2(x);
elseif t{n}.var2(x) == 0
a.(tt{n})(x) = 0;
end
end
  1 件のコメント
Lukas Netzer
Lukas Netzer 2021 年 5 月 13 日
Thank you very much - still alot to learn!

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

その他の回答 (0 件)

カテゴリ

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

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by