"Column Vector" XTick labels
8 次查看(过去 30 天)
显示 更早的评论
Consider the following plot:
plot(0:2,2-(0:2),'*'),xticks([0 1 2]),xticklabels({'(0,2)','(1,1}','(2,0)'})
I want to keep the "plot" as is, just change the labeling for the x axis ticks., so that each xtick label would be a column vector instead of a pair in parentheses. For instance,
0 1 2
2 1 0
instead of
(0,2) (1,1) (2,0)
Is this possible?
0 个评论
采纳的回答
Voss
2022-5-28
编辑:Voss
2022-5-28
plot(0:2,2-(0:2),'*')
xticks([0 1 2])
xticklabels(sprintfc('%d\\newline%d',[0 2 1 1 2 0]))
5 个评论
Voss
2022-5-28
xticks() % leaving xticks at its default, for the time being
xtl = sprintfc('%d\n%d',[0 2 1 1 2 0])
xticklabels(xtl)
Then I remembered another answer I had seen recently, about emboldening a single xticklabel (an answer of yours, incidentally):
There, sending \bf to the TeX interpreter solved the problem, so I tried to do the same thing here but with a line break. I had to look up how to make a line break in TeX, and what I found was this question:
which suggested that \newline was the way to go, so I tried it out and it seemed to work.
dpb
2022-5-30
I guess I had never looked that up before, or if had done in the past, had certainly forgotten it.
The undocumented sprintfc is handy, too; that replaces the functionality I got with the loop and explicit cast. I hadn't stumbled over it before, either...
更多回答(1 个)
dpb
2022-5-28
编辑:dpb
2022-5-28
I don't think so with the tick labels(*), but you can write them with text as
v1=[0:2];v2=[2:-1:0];
for i=1:3
xtl(i)=cellstr(sprintf('%d\n%d',v1(i),v2(i)));
end
xticklabels([])
text(xticks,repmat(-0.02,1,3),xtl,'VerticalAlignment',"top")
(*) When try to write string with embedded \n, the internals of xticklabels converts each to another string element so you end up with it thinking 2X the labels than number of ticks.
2 个评论
dpb
2022-5-28
Yeah, it is "magic" number as shown -- because the default coordinates for text are in 'data' units. This can be set to be 'normalized' which are the units of the axes and then a fixed offset from the lower position number is the invariant way to place.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Axis Labels 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!