フィルターのクリア

how to add a substructure to a structure from app designer

1 回表示 (過去 30 日間)
Daan Decleer
Daan Decleer 2017 年 4 月 29 日
回答済み: Chris Portal 2017 年 4 月 30 日
Hello
I have a structure in the base workspace(PVGEN.a, PVGEN.b). When I run an app designer application, I would like to add a substructure to this structure (PVGEN.a, PVGEN.b, PVGEN.OPTIONS.c, PVGEN.OPTIONS.d). I can make the OPTIONS structure in the app designer application. The only problem is to add the structure to the existing structure in the base workspace.
Can anyone help me please?
I look out to your answers!

採用された回答

Chris Portal
Chris Portal 2017 年 4 月 30 日
Ideally, you would pass PVGEN into the app for it to work on, and then the app would return it via a method when it's needed. Otherwise, you have to use a mix of ASSIGNIN and EVALIN. Something like:
options.c = 3;
options.d = 4;
assignin('base', 'options', options);
evalin('base', 'PVGEN.OPTIONS = options;');

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStructures についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by