Is properties like global variables?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi! :)
Is properties in matlab app designer like global variables in matlab program? I am a little confused..
0 Commenti
Risposte (2)
Matt J
il 21 Feb 2023
Modificato: Matt J
il 21 Feb 2023
No, they are not like global variables. They are attached to the app object used by the callbacks and must be accessed similarly to structs:
app.property1=...
app.property2=...
1 Commento
Walter Roberson
il 21 Feb 2023
Also the object class can be designed to restrict read or write access (though I am not sure how much support App Designer provides for this)
chrisw23
il 22 Feb 2023
see the first line of a mlapp file
classdef app1 < matlab.apps.AppBase
Each AppDesigner app is nothing more than a class definition following the same rules.
see Matlab OOP
0 Commenti
Vedere anche
Categorie
Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!