Borrar filtros
Borrar filtros

How to let y-axis ticks increase by 2?

1 visualización (últimos 30 días)
AbelM Kusemererwa
AbelM Kusemererwa el 23 de Jul. de 2015
Respondida: Azzi Abdelmalek el 23 de Jul. de 2015
How to let y-axis ticks increase by 2? The number on the y-axis should also be in 2 decimal places. What codes will I use?

Respuesta aceptada

Azzi Abdelmalek
Azzi Abdelmalek el 23 de Jul. de 2015
Look at this
t=0:0.001:10;
y=12.5*sin(t)
plot(t,y)
yt=get(gca,'ylim')
nyt=yt(1):2:yt(2)
ytl=cellfun(@(x) sprintf('%.2f',x),num2cell(nyt),'un',0)
set(gca,'ytick',nyt,'yticklabel',ytl)

Más respuestas (0)

Categorías

Más información sobre 2-D and 3-D Plots en Help Center y File Exchange.

Etiquetas

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by