How do I add a text to the right of the figure? I want to resize the plot to leave some empty space on the right and add some information there.
Thanks!!
If you want to put that text inside of a legend you can do:
legend('Some quick information','location','EastOutside')
That is easiest. For more control though, you can put a text box inside the figure window:
MyBox = uicontrol('style','text')
set(MyBox,'String','Here is a lot more information')
and move it around with:
set(MyBox,'Position',[xpos,ypos,xsize,ysize])
Try this for short text:
plot(1:5);
text(5.05, 2.5, 'outside', 'clipping', 'off');
Or this solution for more complex annotations:
http://radio.feld.cvut.cz/matlab/techdoc/creating_plots/chaxes6.html
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With