How change space between subplot and include colobar out axis?
59 views (last 30 days)
Show older comments
Hello. Does someone know how I can increase the space between subplots? I have a 1x7 figure (seven subplots) and some of the labels of the y-axis are overlapping. Another problem, its because four of them are color pictures with color bar and the subplots with colorbar keep a horizontal axis extension different of that wihout colorbar. Any help will be greatly appreciated!
figure
subplot(7,1,1)
plot(rand(10),rand(10),'-');
subplot(7,1,2)
plot(rand(10),rand(10),'-');
subplot(,1,3)
plot(rand(10),rand(10),'-');
colobar
subplot(7,1,4)
plot(rand(10),rand(10),'-');
colobar
subplot(7,1,5)
plot(rand(10),rand(10),'-');
colobar
subplot(7,1,6)
plot(rand(10),rand(10),'-');
subplot(7,1,7)
plot(rand(10),rand(10),'-');
Answers (1)
Austin M. Weber
on 10 Feb 2024
Edited: Austin M. Weber
on 10 Feb 2024
I would recommend you take a look at this MATLAB Answers discussion for some ideas about adding vertical spacing between your subplots.
As for the problem with your subplots not being horizontally aligned because some of the axes contain colorbars, check out the following solution. I have created a local function called position_plot that accepts the axes handle for a subplot and then sets the width of the axes to a specific number. For this example, I set the widths of all the plots to be 0.4 normalized units, but you can adjust this however you please.
I hope this helps!
EDIT: Instead of calling the position_plot function after every subplot I simplified it with a for-loop.
figure
s1 = subplot(7,1,1);
plot(rand(10),rand(10),'-');
s2 = subplot(7,1,2);
plot(rand(10),rand(10),'-');
s3 = subplot(7,1,3);
plot(rand(10),rand(10),'-');
colorbar
s4 = subplot(7,1,4);
plot(rand(10),rand(10),'-');
colorbar
s5 = subplot(7,1,5);
plot(rand(10),rand(10),'-');
colorbar
s6 = subplot(7,1,6);
plot(rand(10),rand(10),'-');
s7 = subplot(7,1,7);
plot(rand(10),rand(10),'-');
splots = [s1 s2 s3 s4 s5 s6 s7];
for n = 1:length(splots)
position_plot(splots(n))
end
function position_plot(ax)
set(ax,'Units','normalized');
set(ax,'Position',[ax.Position(1), ax.Position(2), 0.4, ax.Position(4)]); % You can change 0.4 (the width) to meet your needs
end
8 Comments
Austin M. Weber
on 6 Nov 2024 at 22:18
tiledlayout is an improved version of subplot that was released in 2019.
With tiledlayout you don't have to specify the subplot number with each graph. You simply specify the size you want at the beginning and then add plots one at a time with the nexttile function. For example, if you want a figure with 4 subplots divided into 2 rows and two columns:
tiledlayout(2,2)
Then, when you want to make your first subplot, use the nexttile function just before the actual plotting function. For example:
nexttile
plot(1:3,[4 7 5])
To add the next subplot, use the nexttile function again:
nexttile
plot(1:3,[2 6 9])
You can even add subplots that take up more than one position in the subplot space. For example, if you want your next subplot to occupy the entire row:
nexttile([1 2]) % this means: one row, two columns
plot(1:6,[3 7 6 4 6 9])
So, if you want to make 4 subplots that are rectangle-shaped, you can set the tiledlayout grid to a wider area and then use the nexttile commands to specify the width of the plots. Here is an example with some more realistic data:
% Make some data
x = 0:pi/12:10*pi;
noise = rand(length(x),4);
Y = [sin(x)' sin(x)' sin(x)' sin(x)'] + noise;
figure('units','centimeters','position',[0 0 20 10]) % Makes the figure 20cm by 10cm
tiledlayout(2,8)
for n = 1:4
nexttile([1 4])
plot(x,Y(:,n))
% The subplots will even auto-adjust if they have colorbars
% For exaple, if your third subplot needs a colorbar:
if n == 3
colorbar
end
end
See Also
Categories
Find more on Subplots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!