Show specific data points in contourf plots
4 次查看(过去 30 天)
显示 更早的评论
I am currently trying to obtain volcano / sabatier plots for my project. I have generated the contour plot as follows:
contourf(x,y,rate)
colorbar
I would like to know how would I be able to show a few specific points that were not in the original set of data used to generate the contour plot.
Thank you.
0 个评论
采纳的回答
Patrick Kalita
2011-7-12
contourf(x, y, rate)
hold on
scatter(x_other, y_other, [], rate_other)
colorbar
0 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Contour Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!