create Executable file from simulink model
이전 댓글 표시
Hi @ all,
I would like to ask you how I can build a model , using the Simulink Coder. I would like to call the so generated exe from a Matlab script.
I tried to performe this action in the following way :
I try to enables, in the configuration parameters mask, the load from workspace, but during the compilation the following warning appears: "Loading external input from the workspace is not supported for current code generation target".
I created the .exe file but it is not able to read data, through some input port, from the Matlab workspace.
In this case the target used for compiling is the generic real time (grt).
Some idea?
Thanks in advance
Mitch
댓글 수: 1
Andrea Coraddu
2013년 1월 15일
Hi Mitch
I have the same issue!
Maybe someone can help us...
답변 (3개)
Kaustubha Govind
2013년 1월 15일
1 개 추천
I think you might need to modify the generated code to accept the input from whatever source you need it to use.
Walter Roberson
2013년 1월 15일
1 개 추천
When you generate an executable (rather than a mex) then it runs as an independent process and there is no connection to the MATLAB workspace (other than the command line options.)
Mitch Martelli
2013년 1월 15일
댓글 수: 2
Walter Roberson
2013년 1월 15일
Generate mex instead of a standalone executable and call it from MATLAB.
Or else modify the generated code to retrieve values from the command line (I don't know anything about the structure of the generated code so I do not know how you would have to modify the blocks to do this.)
giovanni mazzuto
2015년 1월 30일
have you some examples?
카테고리
도움말 센터 및 File Exchange에서 Simulink Coder에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!