MATLAB: Can I shift the position of a tile in tiledlayout to be skewed

subplottiledlayout

Is it possible to get a layout like the picture below using tiledlayout?
For the plots below I've used subplot(3,2,5.5) for the last plot. I would like to use tiledlayout instead, as there I can remove the white space between the plots.
Is there a way to get the following layout and remove rebundant white space between the subplots?

Best Answer

I think that such a layout violates the definition of "tiled" and therefore will not be possible with tiledlayout, however this File Exchange file,
gives you all the same flexibility as subplot, but in addition allows you to control inter-plot spacing. E.g.,
subaxis(2,2,1,1); plot(1:5)
subaxis(2,2,2,1); plot(1:5)
subaxis(2,2,1.5,2); plot(1:5)
Related Question