How to obtain similar size of subplots?

조회 수: 1 (최근 30일)
Chathu
Chathu 2014년 12월 10일
댓글: Chathu 2014년 12월 18일
I already have a figure which has 2 subplots. But by default they are in two different sizes.i want to get equal size of subplots in the figure. Any suggestions?
  댓글 수: 1
Jan
Jan 2014년 12월 10일
Please post the code which causes the problem.

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

채택된 답변

Azzi Abdelmalek
Azzi Abdelmalek 2014년 12월 10일
t=0:0.1:10;
y1=sin(t);
y2=cos(t);
subplot(211);
plot(t,y1);
subplot(212);
plot(t,y2);
Where do you see different sizes?
  댓글 수: 3
Azzi Abdelmalek
Azzi Abdelmalek 2014년 12월 10일
Maybe you need to re-size one of your two images with imresize function
Chathu
Chathu 2014년 12월 18일
It worked. Thanks for the hint.

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

추가 답변 (0개)

카테고리

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