How to plot with ticks but without figures
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Konstantin Shchukin
el 29 de Sept. de 2023
Respondida: Dyuman Joshi
el 29 de Sept. de 2023
I would like to plot arbitary units, that's why I would like to keep ticks indicated, but remove numbers near them. How can I realise it?
0 comentarios
Respuesta aceptada
Dyuman Joshi
el 29 de Sept. de 2023
Remove the tick labels -
%Example
%Plot
fplot(@(x) sin(x), [-5 5])
%Adjust ticks
xticks(-5:0.5:5)
%Remove the tick labels
xticklabels([])
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Grid Lines, Tick Values, and Labels en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!