Matlab - 如何在条形图中使用字符串而不是数字 [英] Matlab - How to use strings instead of numbers in bar figure

查看:33
本文介绍了Matlab - 如何在条形图中使用字符串而不是数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I want to obtain a Matlab figure using the bar function but when the actual figure is plotted instead of displaying the numbers underneath each bar I want to display which represents that actual value plotted.

For example I am having the vector x = [1 2 3] and instead of showing 1, 2 and 3 beneath each plotted bar, I want to display a string corresponding to one of these values y = {'sam'; 'alan'; 'ellie'}

Could you please explain how could I obtain this?

解决方案

x = [1 2 3];
str = {'sam'; 'alan'; 'ellie'};
bar(x)
set(gca, 'XTickLabel',str, 'XTick',1:numel(str))

这篇关于Matlab - 如何在条形图中使用字符串而不是数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆