is it possible to shift and resize a plot in the figure without using subplot?
Mostrar comentarios más antiguos
I would like to shift and resize a plot relative to the whole figure.
Respuestas (1)
Walter Roberson
el 28 de Sept. de 2015
0 votos
Yes, you set the axes Position properties. See http://www.mathworks.com/help/matlab/examples/changing-axes-properties.html
Note: if you set the Position of an axes yourself, be sure to do it after you have created all subplots() you are using.
3 comentarios
Mr M.
el 28 de Sept. de 2015
You can set it any number of times. The location depends on what units you choose and how the figure is resized. Your main control over how the axes are sized relative to the figure is to select the Units property. The axes properties are described in detail here:
In particular you should read about the position property:
Walter Roberson
el 29 de Sept. de 2015
Location is relative to the parent container. Most often the parent is the figure, but it could also be a uipanel or uitabgroup .
Categorías
Más información sobre Data Exploration en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!