How to open a simulink model in maximized mode through matlab command line?

5 views (last 30 days)
Hi i used a command open_system('sys_nmae') to open a simulink modle. but this command open a simulink model in small sized window not as my monitor size. i want open a model in maximized mode through matlab command line as i attached in the image.

Accepted Answer

Andreas Goser
Andreas Goser on 25 Feb 2016
Edited: Andreas Goser on 25 Feb 2016
In my experience, a model gets opened just in a way it was save last. Does it not preserve it in your case? What's your release and OS?
There might be better ways, but at least you can influence the location by using something like
set_param(bdroot,'Location',[x1 y1 x2 y2]);
and make this closed to waht you expect as maximized.
  1 Comment
sri prakash muniyandi
sri prakash muniyandi on 25 Feb 2016
hello andreas, thank you, this is the one i expected. for doing it in a generic way i used "get(0,'ScreenSize')" so it gives the screen size so that i can avoid hard-coding of my Location in
set_param(bdroot,'Location',[x1 y1 x2 y2]);

Sign in to comment.

More Answers (0)

Categories

Find more on Simulink in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!