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

4 views (last 30 days)
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 Comments
Adam Danz
Adam Danz on 2 Jan 2022
Edited: Adam Danz on 2 Jan 2022
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.

Sign in to comment.

Answers (0)

Products


Release

R2021a

Community Treasure Hunt

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

Start Hunting!