How to eliminate unwanted grids on the z-axis?

2 ビュー (過去 30 日間)
Edward Liang
Edward Liang 2018 年 11 月 23 日
コメント済み: Luna 2018 年 11 月 26 日
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 件のコメント
Edward Liang
Edward Liang 2018 年 11 月 23 日
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 2018 年 11 月 23 日
編集済み: Jan 2018 年 11 月 23 日
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))

サインインしてコメントする。

採用された回答

Luna
Luna 2018 年 11 月 23 日
Hi Edward,
Maybe this can solve your problem:
set(gca,'XMinorGrid','off');
set(gca,'YMinorGrid','off');
set(gca,'ZMinorGrid','off');
  2 件のコメント
Edward Liang
Edward Liang 2018 年 11 月 24 日
Works with charm! Thanks a lot!
Luna
Luna 2018 年 11 月 26 日
your welcome :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by