subplot with number on top of bar

1 回表示 (過去 30 日間)
Matlabbey
Matlabbey 2012 年 9 月 8 日
hi all!
if you are plotting a bar how is it possible to put the number on top of the bar so it is easier to look at?
thank you!!

採用された回答

Image Analyst
Image Analyst 2012 年 9 月 8 日
  2 件のコメント
Image Analyst
Image Analyst 2012 年 9 月 8 日
OK now you edited it to be a different question. This answer would be to use the text() function to place text wherever you want it.
Matlabbey
Matlabbey 2012 年 9 月 8 日
Hi thank you! It will come in handy sorry about change of question

サインインしてコメントする。

その他の回答 (1 件)

Tom
Tom 2012 年 9 月 8 日
編集済み: Tom 2012 年 9 月 8 日
You can use the annotation function to do this, there are a few ways to choose how to position the text.
AX=zeros(4,1);
for ii=1:4
AX(ii)=subplot(2,2,ii);
plot(rand(5))
end
A=annotation('textbox',[0.45,0.95,0.1,0.1],...
'String','Main Title',...
'HorizontalAlignment','Center',...
'VerticalAlignment','Bottom',...
'BackgroundColor','none',...
'EdgeColor','none');
See
doc annotation
for details

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by