How to plot 17 subplots?
Ältere Kommentare anzeigen
I am trying to plot a large number of subplots, but want to make sure formartting is such that it takes the most compact form (instead of having 1 row with 17 plots, 2 rows, with 13 and 14 plots, etc). So in this case, I would like 5 rows of plots with 4 plots in each row and 1 in the last row. If 16 plots are selected, then 4 rows with 4 plots, etc.
2 Kommentare
Adam
am 30 Jun. 2017
Depending on what you are plotting you are probably better of creating your own axes and positioning them in the desired pattern than using subplot. If you don't want x and y tick labels for every plot subplot creates a lot of wasted space around the axes.
I would like 5 rows of plots with 4 plots in each row and 1 in the last row.
These are 21 plots, not 17. What about 4 rows and 5 columns with two diagrams in the last row for 17 diagrams?
Akzeptierte Antwort
Weitere Antworten (1)
This adds a new row only if required:
N = 17;
figure;
nS = sqrt(N);
nCol = ceil(nS);
nRow = nCol - (nCol * nCol - N > nCol - 1);
for k = 1:N
subplot(nRow, nCol, k);
plot(1:10, rand(1, 10));
end
Comparison to the pure square solution: Saving an empty row helps to get the "most compact form", which is not a 5x5 arrangement:

See also:
1 Kommentar
NIKHIL THOPPIL
am 16 Aug. 2019
Thank you
Kategorien
Mehr zu Subplots finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!