Overlay curves over heatmap
Show older comments
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!
Accepted Answer
More Answers (1)
Ahmed
on 27 Aug 2024
0 votes
Use MATLAB's imagesc instead of heatmap
Categories
Find more on Data Distribution Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!