필터 지우기
필터 지우기

How to increase the size of the subplots

조회 수: 3 (최근 30일)
Chris Martin
Chris Martin 2014년 11월 11일
댓글: Chris Martin 2014년 11월 13일
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일
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
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

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Subplots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by