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

回答 (1 件)

Sean de Wolski
Sean de Wolski 2014 年 11 月 11 日

0 投票

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 件のコメント

Chris Martin
Chris Martin 2014 年 11 月 11 日
I want to increase the height of each subplot so that I can get the resolution
Chris Martin
Chris Martin 2014 年 11 月 12 日
I have done it..
jason
jason 2014 年 11 月 12 日
hi , i am trying to adjust the size of figures in my subplot figure, how do u do it?
Chris Martin
Chris Martin 2014 年 11 月 13 日
use get position command

サインインしてコメントする。

タグ

質問済み:

2014 年 11 月 11 日

コメント済み:

2014 年 11 月 13 日

Community Treasure Hunt

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

Start Hunting!

Translated by