M file and S function block
조회 수: 14 (최근 30일)
이전 댓글 표시
Hey, Is it possible to code a M file from which we can call an S function block??? If yes then, what is the command for it? How can i also give inputs through the m file for the S function block???
댓글 수: 0
채택된 답변
David Sanchez
2014년 1월 9일
You can call your model containing your S-function block from a script (m-file) using the
find_system('Name','your_model');
open_system('yourmodel');
You can set parameters on your model with
set_param();
take a look at
doc set_param
for all the options
댓글 수: 0
추가 답변 (1개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Block and Blockset Authoring에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!