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 CenterFile Exchange에서 Annotations에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by