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 CenterFile Exchange 中查找有关 Variables 的更多信息

产品


版本

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by