How can i set middle tick?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Gabriel Maia
le 17 Août 2018
Modifié(e) : Gabriel Maia
le 17 Août 2018
I want to set a graph with middle tics without number, like the picture. Also i need to enable sides ticks. How can i do it?
0 commentaires
Réponse acceptée
Adam Danz
le 17 Août 2018
Modifié(e) : Adam Danz
le 17 Août 2018
To turn on 'minor' ticks:
set(gca,'XMinorTick','on')
What's a side tick? Check out all the properties of ticks you can set:
6 commentaires
Adam Danz
le 17 Août 2018
I see the problem. You don't need to create another axis. You only need the axis handle of your current axis.
replace
hA = axes
with
hA = gca;
unless you already have your current axis handle available.
Also your minor ticks should be
-7.5 : 2 : 7.5
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!