how to add a substructure to a structure from app designer

1 Ansicht (letzte 30 Tage)
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!

Akzeptierte Antwort

Chris Portal
Chris Portal am 30 Apr. 2017
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;');

Weitere Antworten (0)

Kategorien

Mehr zu Structures finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by