What's the mean of "axes(handles.axes1) " in GUI plot ?
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Nguyen Trong Nhan
le 23 Déc 2013
Commenté : Image Analyst
le 23 Déc 2013
When plotting in GUI, I see someones have the line: axes(handles.axes1); What does that line mean ? Could I skip that line ? thanks very much.
0 commentaires
Réponse acceptée
Image Analyst
le 23 Déc 2013
It means that the current axes should be set to axes1. Anything you do like title(), xlabel(), ylabel(), plot(), bar(), legend() or whatever, will now be applied to axes1 (unless you explicitly pass a different axes into the function which would override the default current axes).
4 commentaires
Nguyen Trong Nhan
le 23 Déc 2013
Modifié(e) : Image Analyst
le 23 Déc 2013
Image Analyst
le 23 Déc 2013
That should work. What is the value of contents? Is it null? Or do you get an error? If so, what is the error?
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Title dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!