From: Leyo Joseph on
Hello

I am using the following command to create a 3*1 subplot.
subplot(3,1,k). This command is in a loop with k change from 1 to 3.
The subplot command geneartes a figure which is approximately 10cm*10cm on my screen. What is the command to enlarge this size to, say, 15*15 cm?
From: Yi Cao on
Try to use set(gcf,'Position',[x0 y0 width hight])
where [x0 y0] is the position of the bottom left corner of the figure, whilst the third and fourth numbers are the width and hight of the figure.

HTH.
Yi

"Leyo Joseph" <leyo.joseph(a)nsn.com> wrote in message <hlh5bc$nol$1(a)fred.mathworks.com>...
> Hello
>
> I am using the following command to create a 3*1 subplot.
> subplot(3,1,k). This command is in a loop with k change from 1 to 3.
> The subplot command geneartes a figure which is approximately 10cm*10cm on my screen. What is the command to enlarge this size to, say, 15*15 cm?