Modifying y axis division
조회 수: 6 (최근 30일)
이전 댓글 표시
Hi,
I wrote some code and got the following graph.
My Problem is the y axis has only 4 points i.e [0 , 5 , 10 , 15] bu the x axis has 9 values [0 : 2 : 16]. Therefore, when I say grid on I am getting rectangular grids, which is kinda not good looking.
What should I do so that the y-axis will also have 9 values and the graph has some nice looking square grids?
Thank You!
댓글 수: 2
Adam Danz
2021년 2월 7일
That step is necessary but you may also have to explicitly set the yticks
ax = gca();
ax.YTick = ax.Xtick;
답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!