Simulink Real-Time - What is terminal command to "Connect Model"?
조회 수: 3 (최근 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개)
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!