plotting subplot with different columns in the rows
67 次查看(过去 30 天)
显示 更早的评论
采纳的回答
Voss
2021-10-5
编辑:Voss
2021-10-5
You can use different grid sizes in subsequent calls to subplot without affecting the placement of plots created in previous calls. For instance, to create two plots across the top half of the figure, you can use:
subplot(2,2,1);
% plot something
subplot(2,2,2);
% plot something
Then to create 13 plots across the bottom half of the figure:
subplot(2,13,14);
% plot something
subplot(2,13,15);
% plot something
subplot(2,13,16);
% etc.
subplot(2,13,26);
更多回答(1 个)
zahra hosaini
2021-10-5
Hi I think u need to have a 2 rows and 13 columns plot. For the first row u only use 2 of the elements like (1,5) and (1, 6) and leave the rest. For the second row u will use all of the elements. Of course this way all of your subplots will be the same size therefor your plots in the first row wont cover the hole of it
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Subplots 的更多信息
产品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!