MATLAB: Series of subplots that are continuous through multiple figures

figureplotsubplot

nrows = 8;
ncols = 5;
currentPlot = 1;
for i = 1:size(input,1)
subplot(nrows, ncols, currentPlot);
plot(input(i,:));
currentPlot = currentPlot + 1;
end
The size of the input is 100, so all of the subplots cannot fit into one figure. But I don't want to squeeze all of the subplots into one figure as that is somewhat overwhelming. Instead, I'd like to be able to pull up as many new figures as is required to finish running through the loop, while filling in with the next indexed subplots.

Best Answer

nrows = 8;
ncols = 5;
nplts=nrows*ncols;
nfigs=ceil(length(input)/nplts);
h=zeros(nplts,nfigs); % hang onto the handles...
k=1;
for j=1:nfigs
figure(j)
for i = 1:nplts
h(i,j)=subplot(nrows, ncols, i);
plot(input(k,:));
k=k+1;
end
end
To get to any given subplot use the handle array of h(plt,figure)
Aircode...test well... :)