Labels not showing up on Graphs
124 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
This has been driving me crazy all morning. for some reason, my request to label an axes isn't working:
Yet, from the command window below, the strings are being assigned - they are just not showing up on the graph.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146429/image.png)
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/146430/image.png)
0 Commenti
Risposta accettata
Robert Cumming
il 12 Dic 2014
Modificato: Robert Cumming
il 12 Dic 2014
you are creating variables called xlabel and ylabel, you need to do:
xlabel ( gTitles(1) )
ylabel ( gTitles(2) )
or better use the axes handle:
xlabel ( handles.axes1, gTitles(1) )
ylabel ( handles.axes1, gTitles(2) )
Note: You will need to clear the variables you created by mistake.
Più risposte (0)
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!