Can I put different figures in the same window next to each other?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have 16 figures that I would like to put in the same window next to each other, how can I do that?
I put a picture attached of the figures
Thanks!

댓글 수: 0
채택된 답변
Arthur Roué
2020년 7월 29일
% Example from documentation
subplot(2,1,1);
x = linspace(0,10);
y1 = sin(x);
plot(x,y1)
subplot(2,1,2);
y2 = sin(5*x);
plot(x,y2)
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Subplots에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!