[Errorbar plot] How to set letters/word on x axis properly?
8 次查看(过去 30 天)
显示 更早的评论
Hello folks,
I'm using this code to create an error bar plot
errorbar(1:1:34,[cell{2,:}],[cell{3,:}],'o');
which results in

When I try add specific names to the x axis with
set(gca,'XtickLabel', cell(1,:));
This happens:

Where i expect the x axis to fill with all supplied names.
cell(1,:)
has the same format as well as the same size as the other ones. Can someone help me?
0 个评论
采纳的回答
Star Strider
2017-8-31
You didn’t post ‘all the supplied names’ or other details, so writing specific code for your problem is not possible.
Adapt this idea:
Cell{1} = {'k','d','X','b','f'};
figure(1)
plot(1:5, rand(1,5), 'o')
set(gca, 'XTick',1:5, 'XTickLabel',Cell{1})
set(gca, 'XLim',[0 6])
4 个评论
Star Strider
2017-8-31
As always, my pleasure.
The default interpreter is 'latex' since you set it that way. Setting it using gca (‘get current axes’) affects only that axes object, so there is no need to reset it for others. The 'latex' interpreter remains the default.
It’s good practice to always specify 'XTick' locations first when you’re specifying 'XTickLabel' to be certain the labels are plotted where you want them. (I also did that in my example code.)
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Errorbars 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
