How to increase the size of the subplots
2 次查看(过去 30 天)
显示 更早的评论
Dear All,
I have used subplot command to plot but the figure seems to so small that I cannot recognize it, how th increase the plot size, I am giving the plot
0 个评论
回答(1 个)
Sean de Wolski
2014-11-11
You could re-"Position" each axes separately by setting the 'Position' property to a new value.
However, I might consider using plotmatrix to build the layout for you and then just plotting over it as necessary
[~,ax] = plotmatrix(rand(5,6))
hold on
cla(ax(3,4))
plot(ax(3,4),sin(1:100))
4 个评论
jason
2014-11-12
hi , i am trying to adjust the size of figures in my subplot figure, how do u do it?
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Subplots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!