adjusting label and title thickness of the plot function
14 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
sermet
le 15 Juil 2014
Réponse apportée : Azzi Abdelmalek
le 15 Juil 2014
x=[1;2;3;4;5;6;7;8;9;10];
plot(x);
xlabel('x coordinates')
ylabel('y coordinates')
title('title')
%I need to increase the size of x-y labels and title and make a little more bold.
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 15 Juil 2014
x=[1;2;3;4;5;6;7;8;9;10];
plot(x);
xlabel('x coordinates','fontsize',16,'fontweight','bold')
0 commentaires
Plus de réponses (1)
Yoav Livneh
le 15 Juil 2014
Just use the 'fontsize' attribute of the axes:
set(gca,'fontsize',fontsize); % default fontsize is 10
0 commentaires
Voir également
Catégories
En savoir plus sur Title 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!