Effacer les filtres
Effacer les filtres

how to add a substructure to a structure from app designer

1 vue (au cours des 30 derniers jours)
Daan Decleer
Daan Decleer le 29 Avr 2017
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!

Réponse acceptée

Chris Portal
Chris Portal le 30 Avr 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;');

Plus de réponses (0)

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by