Slowing of program when adding legend.
Afficher commentaires plus anciens
Hi,
I'm plotting 4 functions in one graph and then adding a legend. For some reason adding the legend is really slowing the computation time - are there any things that slow the legend function down? For example I'm plotting vectors (about 20,000 elements) inside cell arrays in a for and if loop - does this sort of set up slow the legend function?
Any insight is appreciated,
Thanks!
Réponses (1)
per isakson
le 4 Oct 2012
Modifié(e) : per isakson
le 4 Oct 2012
legend is slow, especially if it runs into trouble finding a suitable position. Specify a position and see if that improves the speed, e.g.
legend( ...,'Location', 'NorthEast' )
4 commentaires
Isktaine
le 4 Oct 2012
Matt Fig
le 4 Oct 2012
Sad but true, the legend function is very slow. I only use it at the very end of any code that calls it an I expect to wait.
per isakson
le 4 Oct 2012
- Long ago I made a simple replacement for legend because I found it so slow.
- You might check with profile too see what is going on.
Isktaine
le 4 Oct 2012
Catégories
En savoir plus sur Legend dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!