Insert comment in the 4th quadrant of a subplot with Label and/or text
2 次查看(过去 30 天)
显示 更早的评论
Hello,
I create a figure with subplot(x,y,n)
graphs on the (2,2,1); (2,2,2) and (2,2,3).
and in the 4th quadrant I want to insert some text with a uilabel.
When I want to place a label in the figure towards the bottom right side, nothing is displayed without error.
This works if I don't use subplot.
How to insert one or more labels with a subplot?
Thanks in advance
0 个评论
回答(2 个)
Alan Stevens
2021-4-13
Like so?
x = 0:0.1:10;
y = sin(x);
subplot(2,2,1)
plot(x,y)
subplot(2,2,2)
plot(x,y+1/2)
subplot(2,2,3)
plot(x,y-1/2)
subplot(2,2,4)
text(0.1,0.5,'Put text here?')
axis off
0 个评论
Jean-Hugues LE GALLOU
2021-4-13
2 个评论
Alan Stevens
2021-4-13
Does this do what you want?
x = 0:0.1:10;
y = sin(x);
subplot(2,2,1)
plot(x,y)
subplot(2,2,2)
plot(x,y+1/2)
subplot(2,2,3)
plot(x,y-1/2)
subplot(2,2,4)
text(0.1,0.5,'Put text here?')
cla
text(0.1,0.5,'New text ')
axis off
另请参阅
类别
在 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!