How can I prevent the sim command from bringing the model to the top?

조회 수: 5 (최근 30일)
Randy
Randy 2015년 10월 21일
댓글: Randy 2015년 12월 18일
I'm doing Monte Carlo simulations and would like to suppress the sim command from bringing the model window to the top.

답변 (1개)

Robert
Robert 2015년 10월 21일
I am running MATLAB R2015a on Windows 7 and the sim command doesn't bring my model into focus. What version of MATLAB are you running and on what operating system?
In any case, unless you need to have the Simulink window open, load_system might solve your problem. Rather than opening your model by name alone, or with open_system, or through the Open menu in MATLAB or Simulink, or by opening the file directly outside of MATLAB; call load_system(my_model_name_as_a_string) to load the system without making the Simulink editor window visible. See doc load_system for details.
  댓글 수: 3
Robert
Robert 2015년 11월 5일
Is the variable model a string containing the name of your model? Or are you entering the model name as a command. The latter will open the model as if you had called open_system on it. I suppose if load_system(model) didn't make the model visible then you must be using a string.
Therefore I suspect the model callbacks. If you look at the model properties (right-click in white space in your model window) you will see a Callbacks tab. Any not empty model callback will have an asterisk following its name in the list on the left.
For example, your StartFcn might be doing some operation that opens the model window.
Randy
Randy 2015년 12월 18일
Robert, That's helpful. I have a block in my model that has a StartFcn callback that opens the model. I do this because I need to initialize the model so that blocks setup their userdata, which is scanned to do some other initialization functions. I'll investigate whether I can use load_system there (or eliminate the need to open/load) and if that solves the problem.
thanks

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Programmatic Model Editing에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by