How to see values in heatmap when we use subplot

6 vues (au cours des 30 derniers jours)
NA
NA le 5 Juil 2021
Réponse apportée : Chunru le 5 Juil 2021
I have heatmap like this
subplot(2,2,1);
a=rand(9);
k=heatmap(a);
subplot(2,2,2);
a=rand(9);
k=heatmap(a);
subplot(2,2,3);
a=rand(9);
k=heatmap(a);
I want to see values of each box in the plot.

Réponse acceptée

Chunru
Chunru le 5 Juil 2021
Either increase the figure size or reduce the font size, or both:
figure('Position', [0 0 1024 768]);
subplot(2,2,1);
a=rand(9);
k=heatmap(a);
k.FontSize =2;

Plus de réponses (0)

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!

Translated by