how to make heatmap have a square-shape?

83 vues (au cours des 30 derniers jours)
kinger
kinger le 13 Sep 2019
when I do
a=rand(4);
heatmap(a);
I got the following image:
untitled.jpg
How can I make the figure to a square-shaped one? I tried to use
axis equal;
but there's an error: Using axis with heatmap is not supported.
It seems that "axis" is not supported in heatmap.
  1 commentaire
darova
darova le 13 Sep 2019
What about pcolor()?

Connectez-vous pour commenter.

Réponse acceptée

Shubh Sahu
Shubh Sahu le 17 Sep 2019
Hello Kinger,
heatmap does not support axis command directly but by extracting properties of heatmap, square-shaped figure can be made.
a=rand(4);
k=heatmap(a);
k.positions=[0.1300 0.1100 0.7179 0.179];
While using above code, make sure that Units property is set to normalized.
Regards,
Shubh
  1 commentaire
kinger
kinger le 17 Jan 2020
k.position instead of k.positions

Connectez-vous pour commenter.

Plus de réponses (1)

Ramy Rabie
Ramy Rabie le 6 Juin 2020
x = [zeros(11,1), 6*ones(11,1) , 137*ones(11,1) ,...
84*ones(11,1) ,9*ones(11,1) ,4*ones(11,1)]
y = [ ones(1,6) ; 4*ones(1,6) ; 45*ones(1,6) ;...
25*ones(1,6) ; 2*ones(1,6) ; 2*ones(1,6) ;...
13*ones(1,6) ; 52*ones(1,6) ; 58*ones(1,6) ;...
15*ones(1,6) ; 4*ones(1,6)]
% Making Heatmap figure has square tiles
wposX=100; wposY = 100;
heatmapLength = 500;
heatmapWidth = heatmapLength - (size(y,2)/size(y,1))*heatmapLength;
figure('Renderer', 'painters', 'Position', [wposX wposY heatmapWidth heatmapLength])
tempMap = heatmap(x+y);
% Make heatmap fill the figure
tempMap.InnerPosition = [0 0 1 1];

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