Show specific data points in contourf plots
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Réponse acceptée
Patrick Kalita
le 12 Juil 2011
contourf(x, y, rate)
hold on
scatter(x_other, y_other, [], rate_other)
colorbar
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Contour Plots dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!