SimEvents: route using on attribute
1 次查看(过去 30 天)
显示 更早的评论
I assign an attribute to an entity that is a 1D-Vector with a 10 elements. The attribute looks like this:
out_package = [ 1 1 245 247 40 248 245 124 204 36 ]
Now, what I'd love to do is to route the entities based on the first one. So all entities with the first value of the attribute vector '1' get routed into one queue, all entities with the first value of the attribute vector = '2' will get routed into another queue and so on. How do I do this? I see that the output switch can switch depending on the entitys attribute but does not seem to be able to handle my vector.
Any ideas?
回答(1 个)
Abdolkarim Mohammadi
2021-3-12
编辑:Abdolkarim Mohammadi
2021-3-13
You can create a scalar attribute, whose value is equal to the first element of the vector.
entity.Attribute2 = out_package (1);
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Discrete-Event Simulation 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!