Making a bunch of entity generators to generate variants in a simevents DES system

2 次查看(过去 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));

回答(1 个)

Abdolkarim Mohammadi
The best approach for you is as follows:
  • 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.

类别

Help CenterFile Exchange 中查找有关 SimEvents 的更多信息

产品


版本

R2020b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by