Labels not showing up on Graphs

60 次查看(过去 30 天)
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.

采纳的回答

Robert Cumming
Robert Cumming 2014-12-12
编辑:Robert Cumming 2014-12-12
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.
  1 个评论
Jason
Jason 2014-12-12
Oh yes, the equals sign...Should have spotted it. Thankyou very much. Jason

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Axis Labels 的更多信息

标签

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by