Can i fix a sum of vector generated by Distribution Poisson?

조회 수: 1 (최근 30일)
Safia
Safia 2022년 9월 29일
댓글: Safia 2022년 9월 29일
Hello!
i used a function poissrnd to generate an arrival of cars into a segment highway during period T=3600 s .
this is my code:
lambda = 1/7;
v = poissrnd(lambda, 1, 3600);
but the vector v is changed , i want to get the sum(v) as a fixed value because i will use it in matrix.
i ask you if it is possible to do that or not?
thanks in advance.

채택된 답변

Torsten
Torsten 2022년 9월 29일
Fix the random seed:
rng('default') % e.g.
lambda = 1/7;
v = poissrnd(lambda, 1, 3600);

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by