필터 지우기
필터 지우기

How to subplot 3 graphs in 1 figure?

조회 수: 114 (최근 30일)
Notname Notname
Notname Notname 2019년 7월 1일
답변: Raksa san 2022년 5월 12일
Is it possible to subplot 3 graphs in this particular order?

채택된 답변

Alex Mcaulley
Alex Mcaulley 2019년 7월 1일
Take a look to subplot

추가 답변 (2개)

Madan G
Madan G 2022년 3월 27일
subplot(2,2,1)
subplot(2,2,2)
subplot(2,1,3)

Raksa san
Raksa san 2022년 5월 12일
we use
subplot(2,2,1)
subplot(2,2,2)
subplot(2,2,[3 4])
Example
t = linspace(0,10,110);
figure
subplot(2,2,1)
s1 = 1 - exp(-t);
plot(t,s1,'b*')
subplot(2,2,2)
s2 = 1 - exp(-2*t);
plot(t,s2,'ro')
subplot(2,2,[3 4])
s3 = 1 - exp(-4*t);
plot(t,s3,'gx')

카테고리

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