accessible property for an instance
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Elia
le 19 Déc 2013
Commenté : Azzi Abdelmalek
le 19 Déc 2013
i want to give a name to the x-axes ,i wrote this command in the openingfcn
set(get(axes1,'XLable'), 'String','time');
but is does not work ,when i run it i become on the command window
The name 'XLable' is not an accessible property for an instance of class 'axes'.
where is the Problem ?
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 19 Déc 2013
Modifié(e) : Azzi Abdelmalek
le 19 Déc 2013
Why not
xlabel('time')
And in your code there is a mistake, it's xlabel not xlable
set(get(gca,'xlabel'),'string','time')
2 commentaires
Azzi Abdelmalek
le 19 Déc 2013
Like you did it without the mistake xlable. If axe1 is your axe
set(get(axe1,'xlabel'),'string','time')
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Interactive Control and Callbacks dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!