Monte carlo simulation simplification

1 次查看(过去 30 天)
lambda1 = 60.21;
lambda2 = 41.58;
lambda3 = 9.11;
lambda4 = 8.71;
lambda5 = 3.83;
lambda6 = 3.74;
lambda7 = 18.06;
r1 = poissrnd(lambda1)
r2 = poissrnd(lambda2)
r3 = poissrnd(lambda3)
r4 = poissrnd(lambda4)
r5 = poissrnd(lambda5)
r6 = poissrnd(lambda6)
r7 = poissrnd(lambda7
How can I simplify my code to get the same result? Please help

采纳的回答

Mario Malic
Mario Malic 2020-5-13
lambda = [60.21, 41.58, 9.11, 8.71, 3.83, 3.74, 18.06]
r = poissrnd(lambda)

更多回答(0 个)

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by