在MATLAB中更改条形图x标签

时间:2015-05-10 10:01:57

标签: matlab graph bar-chart

假设我们有这些数据:

89.9    81.9    90.3
87.6    84.6    87.7
87.3    83.0    87.6
89.7    74.3    90.6

输出条形图:

enter image description here

如何将xlabel 1,2,3和4默认值更改为A,B,C和D等字符串?

2 个答案:

答案 0 :(得分:5)

您可以设置当前轴的x-tick标签

set(gca,'XTickLabel',{'one', 'two', 'three', 'four'})

gca获取当前轴,因此在条形图上,这将产生: enter image description here

答案 1 :(得分:0)

Create a Beautiful Bar Graph with Text Label Using Matlab

这是一个非常有用的教程,你可以看到。