X Y grids on 2D surface plot

5 vues (au cours des 30 derniers jours)
Toufik
Toufik le 6 Déc 2019
Commenté : Star Strider le 7 Déc 2019
I'm facing problem in making visible the grids for the x and y axis.
Her is a simple exemple:
[X,Y,Z] = peaks(25);
surf(X,Y,Z)
shading interp;
grid on
view(2)
Please, any help?

Réponse acceptée

Star Strider
Star Strider le 6 Déc 2019
If you want to see the grid lines, do not use shading interp
Just do:
[X,Y,Z] = peaks(25);
figure
surf(X, Y, Z)
grid on
view(2)
and the grid lines will be visible,.
  4 commentaires
Toufik
Toufik le 7 Déc 2019
Thank you very much, it works like that.
Star Strider
Star Strider le 7 Déc 2019
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by