VBA-like "with" function ? + get(0,'ScreenSize')
6 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Luis Vieira da Silva
le 5 Mai 2015
Commenté : Luis Vieira da Silva
le 6 Mai 2015
I have just installed Matlab R2015a with the new object-oriented syntax to get/set graphic object properties e.g.:
h_quit.Enable = 'On'
instead of:
set(h_quit,'enable','on')
Very good. But is there a "with" function similar to the one in VBA, that could allow us in some cases to save characters in program ? That way, we could write:
With data.UsedByGuiData_m
.TagPanel(2).Visible = 'off'
.TagPanel(3).Visible = 'off'
.TagPanel(4).Visible = 'off'
.TagPanel(5).Visible = 'off'
endwith
instead of:
data.UsedByGuiData_m.TagPanel(2).Visible = 'off';
data.UsedByGuiData_m.TagPanel(3).Visible = 'off';
data.UsedByGuiData_m.TagPanel(4).Visible = 'off';
data.UsedByGuiData_m.TagPanel(5).Visible = 'off';
Another question related to this new syntax:
to retrieve the resolution of my computer screen, I use:
get(0,'ScreenSize')
I have tried the new syntax:
0.ScreenSize
But it doesn't work, I get the following error message:
Parse error at ScreenSize: usage might be invalid Matlab syntax.
Is it normal ?
0 commentaires
Réponse acceptée
Titus Edelhofer
le 5 Mai 2015
Hi Luis,
not really. What you can do is to assign to an intermediate variable, something like
lTagPanel = data.UsedByGuiData_m.TagPanel;
lTagPanel(2).Visible = 'off'
lTagPanel(3).Visible = 'off'
lTagPanel(4).Visible = 'off'
lTagPanel(5).Visible = 'off'
or use multiple assignments at once:
[data.UsedByGuiData_m.TagPanel(2:5).Visible] = deal('off')
although I guess easier readable would be the "set" notation in this case
set(data.UsedByGuiData_m.TagPanel(2:5), 'visible', 'off')
Regarding the question on 0: you need to create a variable
r = groot;
r.SreenSize
Since groot is a function, groot.ScreenSize does not work ...
Titus
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Interactive Control and Callbacks dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!