フィルターのクリア

how to further subdivide a subplot

17 ビュー (過去 30 日間)
William Campbell
William Campbell 2020 年 2 月 29 日
コメント済み: William Campbell 2020 年 2 月 29 日
I have setup four subplot areas using subplot(2,2,1), subplot(2,2,2), subplot(2,2,3) and subplot(2,2,4).
Is it possible to further divide subplot(2,2,4) to subplot(2,1,1) and subplot(2,1,2) ?
Also is it possible to create a pop up dialog box that mentions "updating graphics - this may take a few minutes" whilst calculations are progressing prior to graphics updating and automatically disappears when processing has completed and graphics have displayed.
  1 件のコメント
William Campbell
William Campbell 2020 年 2 月 29 日
Thank you for such a quick response - abolutely perfect !

サインインしてコメントする。

回答 (1 件)

Image Analyst
Image Analyst 2020 年 2 月 29 日
Try this:
uiwait(helpdlg('Updating graphics - this may take a few minutes'))
subplot(2,2,1);
subplot(2,2,2);
subplot(2,2,3);
% Draw two plots into the lower right location.
subplot(4, 2, 6);
subplot(4, 2, 8);

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by