フィルターのクリア

Resizing plots in tiledlayout()

20 ビュー (過去 30 日間)
Richard Miller
Richard Miller 2021 年 8 月 20 日
回答済み: Chunru 2021 年 8 月 20 日
I need to plot two figures and I was using tiledlayout(2,1), but I want the top figure to take up about 1/3rd of the vertical space and the bottom plot to take up about 2/3rds of the vertical space. I've tried using uipanel but I can't seem to get it to work out right.

採用された回答

Chunru
Chunru 2021 年 8 月 20 日
tiledlayout(3,1);
nexttile;
plot(rand(10,1))
nexttile([2 1]) % span 2 rows and 1 colum in the tiledlayout
plot(rand(20,1))

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAnnotations についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by