0
我如何提取對象屬性的陣列從一個對象數組Matlab的 - 提取屬性從對象陣列陣列
例:
(其中每個陣列內的對象的具有該屬性?)classdef myClass
properties
myProperty = 1
end
end
-
myObjectMatrix(1:1000) = myClass()
myObjectMatrix(100:234).myProperty % what I thought would work but results in lots of individual results
[myObjectMatrix(100:234).. myProperty的]的作品,但是僅在一個維度。如果我有多個維度將結果「摺疊」回來,則需要使用reshape()。
有沒有更好的方法?
謝謝!