how to add a substructure to a structure from app designer

1 view (last 30 days)
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!

Accepted Answer

Chris Portal
Chris Portal on 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;');

More Answers (0)

Categories

Find more on Structures in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!