How to eliminate unwanted grids on the z-axis?

2 vues (au cours des 30 derniers jours)
Edward Liang
Edward Liang le 23 Nov 2018
Commenté : Luna le 26 Nov 2018
I am trying to plot a 3D scatter plot. Although I have set the zticks to 10.^[-1, 3], I have still got a lot of unwanted grids on the z-axis, which looks like this:
微信截图_20181123180423.png
How can I eliminate the dotted grids and only keep the solid lines? Thanks!
  2 commentaires
Edward Liang
Edward Liang le 23 Nov 2018
Please note that I do not want to get rid of all the grids, so 'grid off' is not my option. I only want to erase the dotted grids.
Jan
Jan le 23 Nov 2018
Modifié(e) : Jan le 23 Nov 2018
Please post the code you have used to create the graphics. Then it is much easier to suggest a modification. Maybe all you need is
yticks(10.^(-1:3))

Connectez-vous pour commenter.

Réponse acceptée

Luna
Luna le 23 Nov 2018
Hi Edward,
Maybe this can solve your problem:
set(gca,'XMinorGrid','off');
set(gca,'YMinorGrid','off');
set(gca,'ZMinorGrid','off');
  2 commentaires
Edward Liang
Edward Liang le 24 Nov 2018
Works with charm! Thanks a lot!
Luna
Luna le 26 Nov 2018
your welcome :)

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by