How to correct figure size for plots?

3 ビュー (過去 30 日間)
Lauren-Xante Claassen
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 Center および File ExchangeGraphics Objects についてさらに検索

タグ

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by