I am plotting an image using Simulink with sampling time 0.01s.
I want to change x-axis grid values instead of 200=2, 400=4....
My code is like
sim('response')
plot(y.signals.values)
hold on
plot(u.signals.values)
How and where should I define time sample for scaling x-axis

 Respuesta aceptada

the cyclist
the cyclist el 18 de Dic. de 2016

11 votos

set(gca,'XTick',0:200:1200)
set(gca,'XTickLabel',0:2:12)

Más respuestas (0)

Categorías

Más información sobre Printing and Saving en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 18 de Dic. de 2016

Respondida:

el 18 de Dic. de 2016

Community Treasure Hunt

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

Start Hunting!

Translated by