我正在尝试Cell
在另一个类 System in MATLAB. The class
Cell 中创建一个类的对象数组`是:
classdef Cell
properties
ID;
EntityID;
ZoneID;
NeighborID;
State;
nextChangeTime;
end
methods
% Define the constructor
function obj = Cell()
obj.ID = zeros(1);
obj.EntityID = zeros(1);
obj.ZoneID = zeros(1);
obj.NeighborID = zeros(1);
obj.State = zeros(1);
obj.nextChangeTime = zeros(1);
end
end
现在我有另一堂课System
。我尝试制作这样的Cell
对象数组:
classdef System
properties
Cells;
end
methods
function obj = System(dimx,dimy)
obj.Cells(dimx,dimy) = Cell();
end
end
但我认为我使用了错误的格式。不确定这是否可能。任何有关如何实现此目的的建议将不胜感激。