Access time and performance
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Franck AUBINEAU
el 25 de Abr. de 2023
Comentada: James Britton
el 17 de Mayo de 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 comentarios
Respuesta aceptada
James Britton
el 3 de Mayo de 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 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with Optimization Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!