Matlab的文本添加到图的外(Matlab add text to the outside of

2019-07-29 07:41发布

如何将文本添加到图的右边? 我想调整的情节留下右边一些空的空间,那里添加一些信息。

谢谢!!

Answer 1:

如果你想要把该文本的传奇,你可以做的里面:

legend('Some quick information','location','EastOutside')

这是最简单的。 对于更多的控制,虽然,你可以把一个文本框图窗口内:

MyBox = uicontrol('style','text')
set(MyBox,'String','Here is a lot more information')

与移动它:

set(MyBox,'Position',[xpos,ypos,xsize,ysize])


Answer 2:

试试这个短文本:

plot(1:5);
text(5.05, 2.5, 'outside', 'clipping', 'off');

或者这种解决方案对于较复杂的注释:

http://radio.feld.cvut.cz/matlab/techdoc/creating_plots/chaxes6.html



文章来源: Matlab add text to the outside of figure