How can i create these three images in one figure?

조회 수: 4 (최근 30일)
Stefan Alexandru
Stefan Alexandru 2021년 4월 27일
댓글: Stefan Alexandru 2021년 4월 27일
How can i create these three images in one figure ?
  댓글 수: 2
Scott MacKenzie
Scott MacKenzie 2021년 4월 27일
Use subplot (or tiledlayout since R2019b) to combine multiple plots into a single figure.
Stefan Alexandru
Stefan Alexandru 2021년 4월 27일
thank you!

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

답변 (1개)

Chad Greene
Chad Greene 2021년 4월 27일
If you're question is about how to make subplots, here's how.
figure
subplot(3,1,1)
plot(sind(1:1e4))
subplot(3,1,2)
plot(rand(1000,1))
subplot(3,1,3)
plot(sind(1:1e4).*cosd(3*(1:1e4)))

카테고리

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