How to remove the tic labels but not the marks?
Mostra commenti meno recenti
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.
Risposta accettata
Più risposte (3)
Elias Gule
il 11 Mar 2015
%%Remove tick labels for the X and Y axes
tickCell = {'XTickLabel',{},'YTickLabel',{}};
set(gca,tickCell{:});
Elias Gule
il 11 Mar 2015
%%To remove tick marks on the y-axis
tickMarks = {'YTick',[]};
set(gca,tickMarks{:});
Sergio Yanez-Pagans
il 21 Ago 2021
Modificato: Walter Roberson
il 21 Ago 2021
0 voti
This can also help you to create ticks:
Categorie
Scopri di più su Grid Lines, Tick Values, and Labels in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!