Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
what does the below code mean
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
I am looking at a code which has the following lines of code.
global ALM;
ALM.static_rows = 10;
what does ALM.static_rows mean?
can a global variable be used like that? please explain
0 Kommentare
Antworten (1)
Daniel Shub
am 21 Sep. 2012
ALM.static_rows most likely means that ALM is a structure
doc struct
It could also be a custom class, but that is unlikely given the use of global.
2 Kommentare
Diese Frage ist geschlossen.
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!