From: Weston Thompson on
Hello,

I'm trying to make a movie from my 2x2 subplot. When I play the movie, it only shows the last (bottom) 2 of the 4 plots of the subplot. Any ideas why it isn't showing the top two?


for t = 1:39
scrsz = get(0,'ScreenSize');
fh = figure('Position',[4 scrsz(4)/1.5 scrsz(3)/1.5 scrsz(4)/1.5]);
hold on

plot commands

M(t) = getframe(fh)
close all
end

fh = figure('Position',[4 scrsz(4)/1.5 scrsz(3)/1.5 scrsz(4)/1.5]);
movie(fh,M,1,1)