Overlay curves over heatmap
Mostra commenti meno recenti
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!
Risposta accettata
Più risposte (1)
Ahmed
il 27 Ago 2024
0 voti
Use MATLAB's imagesc instead of heatmap
Categorie
Scopri di più su Data Distribution Plots in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
