subplot with number on top of bar
Afficher commentaires plus anciens
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!!
Réponse acceptée
Plus de réponses (1)
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
Catégories
En savoir plus sur Title dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!