how to made a group of mixed type variables available in different routines without using global?

2 ビュー (過去 30 日間)
Hello,
How to made a group of mixed type of variables available in different routines without using global?
Say I have 10 variables (some string and some numbers [some integrers and some float]).
I need to have these variables accessible to various routines that are locatated (hierachely) at different levels.
The simple way would be to use Global, which I understand is not advisable (also tried and found out why it is indeed unadvisable)
Thank you
  6 件のコメント
Adam Danz
Adam Danz 2022 年 1 月 2 日
編集済み: Adam Danz 2022 年 1 月 2 日
If you're comfortable with OOP, you could save values as properties of an object so that any function that has access to the object handle can access the properties. This approach is similar to storing values in a structure but also allows for the use of findobj() to get the handle of the object even if the handle is not passed to or within scope of the function.
But I would pass the values as a table or structure or use nested functions. If the values are stored in vectors and thier indicies correspond to each other, I'd strongly recommend using a table.

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

回答 (0 件)

カテゴリ

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

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by