How can I divide/merge my subplots?

94 views (last 30 days)
Ashfaq Ahmed
Ashfaq Ahmed on 26 Aug 2022
Commented: Hirithar on 11 Apr 2024 at 11:22
Hi! I want to plot this figure -
As you can see, the first plot is taking the 3 columns. And the last 6 plots are taking one columns only. Can anyone please tell me how can I write down tha code to plot this figure?

Accepted Answer

Image Analyst
Image Analyst on 26 Aug 2022
subplot(3, 3, 1:3);
plot(rand(1, 10), '.-');
subplot(3, 3, 4);
plot(rand(1, 10), '.-');
subplot(3, 3, 5);
plot(rand(1, 10), '.-');
subplot(3, 3, 6);
plot(rand(1, 10), '.-');
subplot(3, 3, 7);
plot(rand(1, 10), '.-');
subplot(3, 3, 8);
plot(rand(1, 10), '.-');
subplot(3, 3, 9);
plot(rand(1, 10), '.-');
  3 Comments
Matt J
Matt J on 10 Apr 2024 at 18:55
Yes, it is applicable when merging vertically.
subplot(3, 3, [1,4,7]);
plot(rand(1, 10), '.-');
subplot(3, 3, 2);
plot(rand(1, 10), '.-');
subplot(3, 3, 5);
plot(rand(1, 10), '.-');
subplot(3, 3, 6);
plot(rand(1, 10), '.-');
subplot(3, 3, 3);
plot(rand(1, 10), '.-');
subplot(3, 3, 8);
plot(rand(1, 10), '.-');
subplot(3, 3, 9);
plot(rand(1, 10), '.-');
Hirithar
Hirithar on 11 Apr 2024 at 11:22
Thank you. It's working

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!