Simulinkモデ​ルウィンドウのサイズ​と位置を変更する方法​はありますか?

11 views (last 30 days)
MathWorks Support Team
MathWorks Support Team on 1 Apr 2011
Simulinkモデルウィンドウの位置と大きさを変更する方法を教えてください。

Accepted Answer

MathWorks Support Team
MathWorks Support Team on 10 Jun 2016
'location'プロパティを使って変更します。
open_system('vdp');
set_param(gcs,'location',[47 100 1015 633]);
'location'プロパティの引数の書式は
[X位置, Y位置, X方向サイズ, Y方向サイズ]
です。
また、Simulinkウィンドウのデフォルトサイズを変更する場合は、以下になります。
set_param(0,'location',[47 100 1015 633]);
※'location'は内部使用プロパティであり、将来は仕様が変更される可能性があります。
 

More Answers (0)

Categories

Find more on Simulink 環境の基礎 in Help Center and File Exchange

Tags

No tags entered yet.

Products


Release

R2009a

Community Treasure Hunt

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

Start Hunting!