フィルターのクリア

How to run simulink model from a function file?

2 ビュー (過去 30 日間)
Vishisht Bhaiya
Vishisht Bhaiya 2015 年 11 月 4 日
コメント済み: Vishisht Bhaiya 2015 年 11 月 5 日
Dear Researchers, I am running a function file to determinate some parameters to be used in a simulink model. Before the end of the function I am running my simulink using simout command. At this step all the parameters are deleted and simulink model is not running. In debugging,parameters are normally stored in a workplace until the the last line before the sim command. Why simOut command is deleting the previous results and how to fix it?

回答 (1 件)

Stefan Raab
Stefan Raab 2015 年 11 月 4 日
Hello, you have to specify which workspace the simulation should use. The default value is your base workspace, which is different from your function workspace. Try calling the simulation by:
simOut = sim('YOUR_MODEL','SrcWorkspace','current');
Kind regards, Stefan
  1 件のコメント
Vishisht Bhaiya
Vishisht Bhaiya 2015 年 11 月 5 日
Hello Stefan, I tried this but it doesn't work.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeSimulink Environment Customization についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by