How can i create these three images in one figure?
조회 수: 3 (최근 30일)
이전 댓글 표시
How can i create these three images in one figure ?
댓글 수: 2
Scott MacKenzie
2021년 4월 27일
Use subplot (or tiledlayout since R2019b) to combine multiple plots into a single figure.
답변 (1개)
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 Center 및 File Exchange에서 Subplots에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!