subplot hoe to add a tile?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
subplot, how can I add a total title? neglect gtext. anyknow knows a better way? thankx
0 commentaires
Réponse acceptée
Grzegorz Knor
le 22 Fév 2012
Try this code:
for i = 1:4
subplot(2, 2, i)
plot(rand(1, 10));
end
axes('Units','Normal','Position',[.075 .075 .85 .85],'Visible','off');
set(get(gca,'Title'),'Visible','on')
title('global title','FontWeight','bold','FontSize',15);
or use one of these function from fex:
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Subplots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!