is there a way to get the values associated with the *minor* tick marks?

2 visualizaciones (últimos 30 días)
get(gca, 'xticks') only returns the major tick marks ...
Thanks! ~ Jos

Respuesta aceptada

Ameer Hamza
Ameer Hamza el 26 de Jun. de 2018
Editada: Ameer Hamza el 26 de Jun. de 2018
ax = gca;
get(ax.XAxis, 'MinorTickValues')
For R2014b and later, following also work
ax = gca;
ax.XAxis.MinorTickValues

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by