Simulink Real-Time - What is terminal command to "Connect Model"?
4 ビュー (過去 30 日間)
古いコメントを表示
tg = slrealtime;
slbuild('model'); --> build application
tg.load('model'); --> deploy to target
tg.start; --> start application
What is the command to "Connect Model"?
2 件のコメント
Jonas
2021 年 8 月 5 日
I am not sure which action you are missing, is there anything you cannot do with the commands mentioned here?
回答 (2 件)
Chris Zhang
2021 年 8 月 6 日
tg=slrealtime;
tg.connect;
2 件のコメント
Chris Zhang
2021 年 8 月 9 日
Once the application is loaded on target computer by tg.load(gcs), you can use tg.setparam command to modify parameter values.
Stefanie Schwarz
2023 年 1 月 26 日
編集済み: Stefanie Schwarz
2023 年 1 月 26 日
>> set_param('model','SimulationCommand','connect')
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Target Computer Setup についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!