How to make the font sizes of Xlabel, Ylabel, and Title different in a heat map using MATLAB?
11 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hongyun
le 19 Juil 2024
Réponse apportée : aasim Azooz
le 26 Juil 2024
I have used the heatmap function in MATLAB to draw a figure. However, the font sizes of Xlabel, Ylabel, and Ttile are same. How to make the font sizes of Xlabel, Ylabel, and Title different in a heat map?
2 commentaires
Réponse acceptée
Walter Roberson
le 19 Juil 2024
h = heatmap(......);
warnstate = warning(MATLAB:structOnObject', 'off');
sh = struct(h);
warning(warnstate);
sh.Axes.XLabel.FontSize = as appropriate;
sh.Axes.YLabel.FontSize = as appropriate;
sh.Axes.Title.FontSize = as appropriate;
Plus de réponses (1)
aasim Azooz
le 26 Juil 2024
you can do it in two ways
1- from the edit this object properties in the figure tool bar. you click on tthe xlabel or ylabel and change the font size
2- you can do it from within the code using
xlabel ( 'Text .... ','fontsize',14)
ylabel('Test ....',fontsize',16)
0 commentaires
Voir également
Catégories
En savoir plus sur Data Distribution Plots 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!