How to paste multiple heatmaps together/in 1 figure
17 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Aaron Ouyang
el 13 de Jul. de 2022
Respondida: Walter Roberson
el 13 de Jul. de 2022
Hi,
I've created three heatmaps and I was just wondering if it was possible for me to combine them together or into 1 figure. I included some pictures for reference, thanks.
0 comentarios
Respuesta aceptada
Voss
el 13 de Jul. de 2022
You can use subplot (or tiledlayout)
figure()
subplot(3,1,1)
heatmap(rand(3,5))
subplot(3,1,2)
heatmap(rand(3,5))
subplot(3,1,3)
heatmap(rand(3,5))
0 comentarios
Más respuestas (1)
Walter Roberson
el 13 de Jul. de 2022
You can pass a figure or axes to heatmap as the first parameter. If you pass an axes then it the children might get completely replaced.
The output of heatmap() is a special object that acts like an axes.
heatmap() accepts Position property; https://www.mathworks.com/help/matlab/ref/matlab.graphics.chart.heatmapchart-properties.html#d123e612890
0 comentarios
Ver también
Categorías
Más información sobre Data Distribution Plots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!