About 50 results
Open links in new tab
  1. matlab - Correctly aligning labels for subgroups within a tiledlayout ...

    Feb 16, 2021 · Perhaps you can have a a nested tiled layout, where the outer layout is 3x1, its first two positions are taken by a 2x2 tiled layout and the last position is a simple plot.

  2. matlab - How to generate unaligned subplots using tiledlayout? - Stack ...

    Oct 28, 2021 · I plan to generate a plot that has 3 subplots on the first row, 4 subplots on the second row using tiledlayout. As 4 is not a multiple of 3, I have difficulties to correctly manage it. All examples I

  3. How to merge tiles created by "tiledLayout" in MATLAB?

    May 20, 2021 · Now that MATLAB has introduced tiledlayout, I am using it instead of subplot as it allows the user to modify the gap between various axes in a figure. But I cannot figure out how I can merge …

  4. matlab - How to add a spanning ylabel on tiledlayout plots? - Stack ...

    Sep 1, 2020 · -2 I've got a tiled layout in MATLAB with 3 tiles and I want to add a vertical label left to the y-axis, spanning over all tiles.

  5. matlab - Using colorbar and nested tiledlayout - Stack Overflow

    Nov 2, 2023 · figure; tl = tiledlayout(4, 1); for ii = 1:4 tl2 = tiledlayout(tl, 1, ii); tl2.Layout.Tile = ii; for jj = 1:ii nexttile(tl2,jj); imagesc; axis tight; end end cb = colorbar(); cb.Layout.Tile = 'east'; (This is of course a …

  6. Matlab tiledlayout, how to create a tile with no axes or data

    Nov 9, 2023 · 0 I am working with Matlab (R2023a) and I am hoping to make a tiledlayout such that one of the tiles doesn't contain any axes or data, such that it is empty except for the title. I'm planning to …

  7. matlab - Programmatically fix title to same height in tiledlayout ...

    Sep 1, 2025 · Is there a way to fix the position of left-aligned axis titles regardless of the yticklabels? I am programmatically generating a series of axis objects, where the yticklabels are being autogenerated.

  8. matlab - How to find an sgtitle in a figure with a tiledlayout? - Stack ...

    Sep 11, 2025 · fh_wo_sgtitle_handle.Children fh_with_sgtitle_handle.Children I guessed it would be in the Children of the tiledlayout, however: fh_wo_sgtitle_handle.Children (1).Children ans = 2×1 Axes …

  9. Add a common legend for several barcharts Matlab

    Apr 24, 2015 · Add a common legend for several barcharts Matlab Asked 10 years, 10 months ago Modified 10 years, 10 months ago Viewed 4k times

  10. How to reduce the borders around subplots in matlab?

    Sep 15, 2011 · Here is a list of other possible solutions: tight subplot, jointfig.m, Some Matlab tricks for making figures, Useful little utility, Reduce Grey Space around Images in a Figure