how to change the color of each point in the surface?
Afficher commentaires plus anciens
Hi everyone. I want to change the color of each point in a surface. For example, point [3, 4, 5] in blue and , point [5,4,3] in red and so on. Please help me.
Réponses (1)
plot3(3,4,5,'b', 5,4,3,'r')
If you have dozens of points use
scatter3(x(:),y(:),z(:), [], col)
where col is a Nx3 colormap of the colors for the 1, 2, Nth value in (x,y,z).
3 commentaires
mohammad izadkhah
le 30 Juin 2015
Thorsten
le 30 Juin 2015
So how are your points stored in Matlab, and what colors do you want for these points?
mohammad izadkhah
le 30 Juin 2015
Catégories
En savoir plus sur Surface and Mesh Plots dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!