Access time and performance

3 views (last 30 days)
You can see the code below and my problem about execution time. In my mind, there is no difference between line 8 and 22.
LFKEtat is a very simple handle class.
And I don't understand the difference between line 15 and lines 8 & 22. The access time is very long ?
My need is a cell array of "LFKEtat" and I didn't find a solution to optimize execution time.
If anyone has got an idea ?? Thanks

Accepted Answer

James Britton
James Britton on 3 May 2023
Thank you for reaching out with your question. We are aware of the performance concern you have identified here and are working to make incremental performance improvements in the coming releases. That being said, allow me to explain the performance differences you are encountering.
Line 8 involves overwriting a variable that stores a reference to a handle object, with another handle. These handles use reference counting that must be managed whereas line 22 is only working on a scalar numeric value that is not reference counted and can be optimized using generated machine code that is very fast. Line 15 differs from line 8 in extracting an array from a container object which has extra overhead.
  2 Comments
Franck AUBINEAU
Franck AUBINEAU on 3 May 2023
Thanks for the answer. Is there a way to optimize line 15 by using something different from a cell array adapted to handle object ?
James Britton
James Britton on 17 May 2023
Unfortunately no. Not at this time.

Sign in to comment.

More Answers (0)

Categories

Find more on Get Started with Optimization Toolbox 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!