- Build model
How to run a Simulink Desktop Real-Time model with external mode in an App Designer app?
조회 수: 4 (최근 30일)
이전 댓글 표시
I need to create an app that runs a Simulink Desktop Real-Time model in the external mode, like this
In the MATLAB app, I set up a button callback function to start my simulation, like this
set_param(MyModel,'SimulationCommand','start')
But I noticed that the simulink model seems to work in the Nomal mode, shown as
What should I do or set parameters to make the model run in external mode in my designed app.
Any information will be helpful and thanks in advance.
댓글 수: 0
답변 (1개)
Hyunuk Ha
2023년 4월 29일
You can utilize 'slrealtime' .
Like,
>> tg = slrealtime;
>> tg.start();
The brief workflows are,
>> rtwbuild('mdl'); % or slbuild('mdl');
This generates mdl.mdlatx file.
2. Load model
>> tg.load('mdl')
3. start model
>> tg.start();
You can easily utilize using 'slrealtime' obj.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Real-Time Simulation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!