Borrar filtros
Borrar filtros

How to increase the size of the subplots

3 visualizaciones (últimos 30 días)
Chris Martin
Chris Martin el 11 de Nov. de 2014
Comentada: Chris Martin el 13 de Nov. de 2014
Dear All,
I have used subplot command to plot but the figure seems to so small that I cannot recognize it, how th increase the plot size, I am giving the plot

Respuestas (1)

Sean de Wolski
Sean de Wolski el 11 de Nov. de 2014
You could re-"Position" each axes separately by setting the 'Position' property to a new value.
However, I might consider using plotmatrix to build the layout for you and then just plotting over it as necessary
[~,ax] = plotmatrix(rand(5,6))
hold on
cla(ax(3,4))
plot(ax(3,4),sin(1:100))
  4 comentarios
jason
jason el 12 de Nov. de 2014
hi , i am trying to adjust the size of figures in my subplot figure, how do u do it?
Chris Martin
Chris Martin el 13 de Nov. de 2014
use get position command

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by