フィルターのクリア

simulink mask callback adding variables to workspace

9 ビュー (過去 30 日間)
Amish Rughoonundon
Amish Rughoonundon 2016 年 3 月 1 日
コメント済み: Sebastian Castro 2016 年 3 月 2 日
Hi, I have a subsystem with a mask and a callback function based on what option the user chooses in the mask dialogue. I set some variables in the callback function as below
rev = 1
The variable appears in the matlab workspace. Is there a way to keep the variable from appearing in the workspace but still be able to use it in the callback function code? Thanks, Amish

採用された回答

Sebastian Castro
Sebastian Castro 2016 年 3 月 2 日
編集済み: Sebastian Castro 2016 年 3 月 2 日
You can take all that initialization code and move it from a block callback to the "Initialization" tab of the Mask Editor. The variables created will belong only to the masked block's workspace, so they cannot be tampered with in the base workspace.
- Sebastian
  2 件のコメント
Amish Rughoonundon
Amish Rughoonundon 2016 年 3 月 2 日
cool that works. I am now officially puzzled as to when to use the callback code and when to use the initialization code. I read the documentation but it's unclear why anybody would use callbacks at all
Sebastian Castro
Sebastian Castro 2016 年 3 月 2 日
Well, the callbacks work for any block -- whether it is a masked subsystem or not.
With a masked subsystem, you get the advantage of having a local block workspace, which lends itself out for self-contained initialization code.
On the other hand, block callbacks give you control of other events besides initialization. There's a whole list of them including copy, paste, open (double-click), etc. so there's more freedom to insert code snippets at key instances if you need to.

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeAuthor Block Masks についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by