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

1 visualización (últimos 30 días)
Safia
Safia el 29 de Sept. de 2022
Comentada: Safia el 29 de Sept. de 2022
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.

Respuesta aceptada

Torsten
Torsten el 29 de Sept. de 2022
Fix the random seed:
rng('default') % e.g.
lambda = 1/7;
v = poissrnd(lambda, 1, 3600);

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by