Same interval y axis

2 visualizaciones (últimos 30 días)
MARCO PIGNATIELLO
MARCO PIGNATIELLO el 7 de Nov. de 2020
Comentada: MARCO PIGNATIELLO el 9 de Nov. de 2020
Hi, I have, in for cycle, n plot and I want the same interval on y axis (0.002 mm) for all plot. The data are all different each other, so 1)there is a method to thi s this process automatically?? 2) I would like to fix the limit between min and max value to 2 cm
What I have
What I want

Respuestas (1)

Walter Roberson
Walter Roberson el 7 de Nov. de 2020
There is a way.
set(groot, 'DefaultAxesYLim', [-0.3955,-0.3935])
Better would probably be to use the handle of your figure instead of groot.
Personally I avoid setting default properties such as these, as it mentally removes the setting of the properties too far away from the code doing the plotting, making it difficult to debug. Typically it would be better to create a function that you explicitly call that sets the properties to make it obvious.
  1 comentario
MARCO PIGNATIELLO
MARCO PIGNATIELLO el 9 de Nov. de 2020
I would like to set 2 cm between the top and the bottom of y axis for all the plots that instead have different y axis limits. Moreover, I want one tick each 1 mm like in the excel graph.

Iniciar sesión para comentar.

Categorías

Más información sobre Graphics Object Identification en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by