show the output of subplot as a full screen show
조회 수: 6 (최근 30일)
이전 댓글 표시
Hello,
I need to show the subplot output as a full screen image but it shows small images in the output. my Matlab version is R2016a. do you have any sugestions for this? Thank you.
댓글 수: 0
채택된 답변
Star Strider
2021년 4월 24일
Try something like this —
hf = figure;
subplot(2,1,1)
plot(1:100, randn(1,100))
grid
subplot(2,1,2)
plot(1:100, sin(2*pi*(0:99)/33))
grid
hf.Position = [0 0 [1 1/2]*2.7E+3];
.
댓글 수: 0
추가 답변 (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!