Display specific values in x-axis

Hello,
I would like to display specific values in x-axis but it doesn't work.
This is my code:
X = categorical({'16s','20s','30s'});
X = reordercats(X,{'16s','20s','30s'});
MIG16s=[8.81, 7.68, 5.20]
MIG20s=[9.65, 7.92, 4.61]
MIG30s=[9.52, 7.86, 4.84]
MIG=[MIG16s; MIG20s; MIG30s]
y=MIG
b = bar(X, y)
hBar = bar(y,1);
for k1 = 1:size(y,2)
ctr(k1,:) = bsxfun(@plus, hBar(1).XData, hBar(k1).XOffset'); % Note: ‘XOffset’ Is An Undocumented Feature, This Selects The ‘bar’ Centres
ydt(k1,:) = hBar(k1).YData; % Individual Bar Heights
text(ctr(k1,:), ydt(k1,:), sprintfc('%.2f', ydt(k1,:)), 'HorizontalAlignment','center', 'VerticalAlignment','bottom', 'FontSize',8, 'Color','b')
end
legend({'X10', 'X20', 'X50'});
set(gcf,'color','w') % pour les bordures.
set(gca, 'FontSize', 9, 'linewidth', 1, 'FontName','Times New Roman'); %la taille des éléments sur les axes.
xlabel('Grandissement','FontSize',12, 'FontName','Times New Roman')
ylabel('MIG','FontSize',12, 'FontName','Times New Roman')
Do you have answer?
Thanks,

2 个评论

What isn't working?
I don't see any part of your code that specifies x axis values.
The problem is that I can't obtain 16s, 20s and 30s in x-axis.
Thank you,

请先登录,再进行评论。

回答(0 个)

类别

帮助中心File Exchange 中查找有关 Creating, Deleting, and Querying Graphics Objects 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by