Info
此问题已关闭。 请重新打开它进行编辑或回答。
what does the below code mean
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(1 个)
Daniel Shub
2012-9-21
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 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!