matlab subplot

7 views (last 30 days)
Sami
Sami on 6 Aug 2011
Hallo,
how can I plot different figures in the same figure window? I use a for loop to plot because I am working with cell arrays: example:
for i_z = 26:34
figure
hold on
a = horzcat (dummy_A{i_z}(:,2), dummy_A{i_z}(:,5));
b = horzcat (dummy_B{i_z}(:,2), dummy_B{i_z}(:,5));
plot (a(:,1), a(:,2), 'ob', 'MarkerSize', 7, 'Linewidth', 2)
plot (b(:,1), b(:,2), 'xg', 'MarkerSize', 7, 'Linewidth', 2)
end
This plots a series of windows (9) and for a window i get the plots of a and b for i_z equal to one value.
I'd like to have those 9 windows in one plot window 3x3 as subplots.
Thanks.
Sami

Accepted Answer

Oleg Komarov
Oleg Komarov on 6 Aug 2011
Call figure before the loop, then inside before hold on:
subplot(3,3,i_z-25)
% Example
figure
for n = 1:9
subplot(3,3,n)
hold on
plot(1:10,1:10,'r')
plot(1:10,10:-1:1,'b')
end

More Answers (1)

Dustin
Dustin on 6 Aug 2011
Hi Sami,
Refer to the MATLAB documentation on the function subplot:
By selecting the appropriate subplot as:
subplot(3,3,i_z-25)
before the plot commands, you should get what you need.
Cheers, Dustin.

Tags

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!