Access time and performance
3 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Franck AUBINEAU
am 25 Apr. 2023
Kommentiert: James Britton
am 17 Mai 2023
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
0 Kommentare
Akzeptierte Antwort
James Britton
am 3 Mai 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 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Get Started with Optimization Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!