필터 지우기
필터 지우기

Output missing when running Simulink model from script.

조회 수: 13 (최근 30일)
Lennart
Lennart 2015년 8월 26일
댓글: swadexi dx 2023년 2월 28일
Hey everybody,
I am currently trying to run a automated simulation by running a simulink model from a matlab script. Everything works fine so far except of that the "to workspace" block doesn't return it's output to the matlab workspace when I run the simulink model with the command "sim(modelName, 'StopTime', '100');". When I click the play button of the Simulink model it does return the output to the matlab workspace.
Is there any possibility that I start the simulation from a matlab script and process the output vector right afterwards?
Thanks in advance!
Regards,
Lennart

답변 (1개)

Walter Roberson
Walter Roberson 2015년 8월 26일
When you use sim(), the To Workspace block writes the data into the workspace of the function that called the sim() command. That function can act on the variables such as by using assignin('base').
When you start a model from a graphics menu, the To Workspace block writes the data into the base workspace.
  댓글 수: 6
Walter Roberson
Walter Roberson 2021년 4월 5일
To Workspace can be configured to either write in the workspace of the calling function (or script) or else into the base workspace. If the expected output does not show up in the workspace of the calling function (or script) then try
evalin('base', 'whos')
to see if it showed up there.
swadexi dx
swadexi dx 2023년 2월 28일
I have the same issue, the sim() function takes the output of simulink only from the integrator.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Programmatic Model Editing에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by