Modifying y axis division
6 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Adam Danz
am 7 Feb. 2021
That step is necessary but you may also have to explicitly set the yticks
ax = gca();
ax.YTick = ax.Xtick;
Antworten (0)
Siehe auch
Kategorien
Mehr zu 2-D and 3-D Plots finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!