Is there a possibility of building a plot window with 8 plot figures disposed in the following manner?
- six of them positioned in a 2 x 3 grid;
- the remaining 2, position in a 1 x 2 grid, underneath the 2 x 3 grid;
I can’t use the subplot function, because for the fist 6 I would have subplot(2, 3, x) and for the last 2 I would have subplot(1, 2, x).
The last input to the
subplotcommand need not be an integer and takes decimal offsets. You can use this to create the plot you want, with the two lowest ones centered under the row above with all figures being the same size as in the following example.