Handle to a Property or field

2 views (last 30 days)
nathan blanc
nathan blanc on 14 Mar 2023
Commented: nathan blanc on 18 Mar 2023
Lets say I have a struct or a handle object with many properties, so that calling a property with a dot is time consuming (it is done millions of times ever run)
is there a way to asign a handle to the property so that I can call it directly?
Nathan

Accepted Answer

Rik
Rik on 14 Mar 2023
The only way I can think of is to make that property contain an object of a handle class. Other than that, no, because you can only directly refer to objects, not to their properties.
If the indexing is the problem, why not store the value in a variable? I can't imagine any user interaction generating changes millions of times.
  4 Comments
Rik
Rik on 16 Mar 2023
Edited: Rik on 16 Mar 2023
Perhaps a persistent variable to create a makeshift dictionary would do the trick?
That way you can use ismember to look up the index in your cached data. You can even implement a counter that refreshes your data every X times.
Also, what do you think the chances are that I made a typo in my own name?
nathan blanc
nathan blanc on 18 Mar 2023
Thank you again for your answer Rik :)
Your answer looks like a good workaround, albeit a bit dirty. I will try it
Nathan

Sign in to comment.

More Answers (0)

Categories

Find more on Graphics Object Properties in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!