Overlay curves over heatmap
Mostrar comentarios más antiguos
Hello everyone,
I was wondering if it is possible to plot curves over heatmap. It goes something like this:
X = 20:20:1000;
Y = 100:-2:1;
Z = randi(100,50,50);
h = heatmap(X,Y,Z);
hold on
for ii=1:5
curve = ii+1000./X;
plot(X, curve)
end
hold off
I want the curves to be above the heatmap. For example, in the figures below,

the right figure should be on top of the left figure.
Any ideas?
Thanks in advance!
Respuesta aceptada
Más respuestas (1)
Ahmed
el 27 de Ag. de 2024
0 votos
Use MATLAB's imagesc instead of heatmap
Categorías
Más información sobre Data Distribution Plots en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
