- Generate a random number for every variant.
- Use the minimum value of the array as the dt.
- Update the minimum of the array with a new value.
- Repeat the process from step 2.
Making a bunch of entity generators to generate variants in a simevents DES system
1 次查看(过去 30 天)
显示 更早的评论
Hi all,
I want to make a bunch (478) of entity generators in my model to create entities that represent different patient variants in my model. The interarrival times of the patients types are stored in a variable in a .mat file.
Is there any way to create the entity generators in an efficient way, so to avoid having to create each 478 entity generator manually?
Thanks in advance,
Thomas
Below you can find the code i would use to generate the first variant: (each row in weibparam represents a patient variant)
T = load("weibull_interarrival.mat");
dt = wblrnd(weibparam(1,1),weibparam(1,2));
0 个评论
回答(1 个)
Abdolkarim Mohammadi
2021-3-4
The best approach for you is as follows:
另请参阅
类别
在 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!