How to correct figure size for plots?

조회 수: 3 (최근 30일)
Lauren-Xante Claassen
Lauren-Xante Claassen 2023년 5월 15일
댓글: Lauren-Xante Claassen 2023년 5월 15일
This is the outcome of my plot figure. where the graphs are small and all the wording overlaps:
This is what I would like it to look like:
How do I correct this? I have attached the code I am using for a 1030x9 Matrix called ConcreteData.

채택된 답변

KSSV
KSSV 2023년 5월 15일
set(gcf, 'color','w','Position',[680, 250,1600,846]); % change the dimenions of figure here
t1 = tiledlayout(4,2,'TileSpacing','tight','Padding','compact') ;
for i = 1:8
ax(i) = nexttile(t1);
plot(rand(1,10)) ;
end
  댓글 수: 1
Lauren-Xante Claassen
Lauren-Xante Claassen 2023년 5월 15일
Thank you, that was extremely helpful!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Graphics Objects에 대해 자세히 알아보기

태그

제품


릴리스

R2022a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by