Series of subplots that are continuous through multiple figures
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
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.
0 comentarios
Respuesta aceptada
dpb
el 3 de Ag. de 2013
Editada: dpb
el 3 de Ag. de 2013
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... :)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Subplots en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!