How to remove the tic labels but not the marks?

676 visualizaciones (últimos 30 días)
Mr M.
Mr M. el 11 de Mzo. de 2015
Editada: Walter Roberson el 21 de Ag. de 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.

Respuesta aceptada

Joseph Cheng
Joseph Cheng el 11 de Mzo. de 2015
Editada: Joseph Cheng el 11 de Mzo. de 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.

Más respuestas (3)

Elias Gule
Elias Gule el 11 de Mzo. de 2015
%%Remove tick labels for the X and Y axes
tickCell = {'XTickLabel',{},'YTickLabel',{}};
set(gca,tickCell{:});

Elias Gule
Elias Gule el 11 de Mzo. de 2015
%%To remove tick marks on the y-axis
tickMarks = {'YTick',[]};
set(gca,tickMarks{:});

Sergio Yanez-Pagans
Sergio Yanez-Pagans el 21 de Ag. de 2021
Editada: Walter Roberson el 21 de Ag. de 2021

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by