Regarding 3d plot color
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Amy Topaz
le 11 Mar 2022
Réponse apportée : Cris LaPierre
le 11 Mar 2022
I am trying to plot a 3d plot using surface function.

How can I change the color of the plot?
0 commentaires
Réponse acceptée
Plus de réponses (1)
Cris LaPierre
le 11 Mar 2022
The spacing between your values is so small that all you are seeing here is the EdgeColor. Try setting the color to 'none' and see if what you get is more like what you expected.
[X,Y] = meshgrid(-5:.5:5);
Z = Y.*sin(X) - X.*cos(Y);
surface(X,Y,Z);
view(3)
% with no EdgeColor
figure
surface(X,Y,Z,'EdgeColor','none');
view(3)
0 commentaires
Voir également
Catégories
En savoir plus sur Surface and Mesh 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!