MATLAB: How to make subplots larger

MATLABsubplot

Is there a way I can increase the vertical size of 4 subplots that are in a column? If I have 1 X variable and 4 Y:
x=1:10;
y1=x.^0.5;
y2=x;
y3=x.^2;
y4=x.^3;
subplot(4,1,1);
plot(x,y1);
subplot(4,1,2);
plot(x,y2);
etc
What can I do to make these plots just as spaced out but larger vertically?

Best Answer

Do you just want to make the figure taller?
x=1:10;
y1=x.^0.5;
y2=x;
y3=x.^2;
y4=x.^3;
figure1=figure('Position', [100, 100, 1024, 1200]);
subplot(4,1,1);
plot(x,y1);
subplot(4,1,2);
plot(x,y2);
subplot(4,1,3);
plot(x,y3);
subplot(4,1,4);
plot(x,y4);