Show specific data points in contourf plots
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Akzeptierte Antwort
Patrick Kalita
am 12 Jul. 2011
contourf(x, y, rate)
hold on
scatter(x_other, y_other, [], rate_other)
colorbar
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Contour Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!