Filter löschen
Filter löschen

gui

1 Ansicht (letzte 30 Tage)
pawan kumar
pawan kumar am 17 Sep. 2011
in gui programming if any variable is defined in push button(or toggle button). then this variable is not accepted by programme in other button in same gui programming
eg:.
push button1
a = [1 2 3 4];
push button2
xlswrite('a.xlsx',a)
this gives undefined variable a; please help me regarding this
thanks pawan kumar

Akzeptierte Antwort

TAB
TAB am 17 Sep. 2011
In matlab, scope of a variable is limited to the function in which is declared. If u want to share the variable between multiple functions, then declare it as 'global' in each function which access it. In your case it should be
push button1
global a;
a = [1 2 3 4];
push button2
glabal a;
xlswrite('a.xlsx',a);
Find more on

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by