How to remove the tic labels but not the marks?
441 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mr M.
le 11 Mar 2015
Modifié(e) : Walter Roberson
le 21 Août 2021
I would like to remove tick marks on the y-axis but not on the x-axes. And I want to remove the labels (numbers) of all ticks.
0 commentaires
Réponse acceptée
Joseph Cheng
le 11 Mar 2015
Modifié(e) : Joseph Cheng
le 11 Mar 2015
what you could do is use the set command for the axis. like
set(gca,'YTick',[]); %which will get rid of all the markings for the y axis
or
set(gca,'Yticklabel',[])
set(gca,'Xticklabel',[]) %to just get rid of the numbers but leave the ticks.
Plus de réponses (3)
Elias Gule
le 11 Mar 2015
%%Remove tick labels for the X and Y axes
tickCell = {'XTickLabel',{},'YTickLabel',{}};
set(gca,tickCell{:});
0 commentaires
Elias Gule
le 11 Mar 2015
%%To remove tick marks on the y-axis
tickMarks = {'YTick',[]};
set(gca,tickMarks{:});
0 commentaires
Sergio Yanez-Pagans
le 21 Août 2021
Modifié(e) : Walter Roberson
le 21 Août 2021
This can also help you to create ticks:
0 commentaires
Voir également
Catégories
En savoir plus sur Axis Labels dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!