using normrnd function in a loop

If I use normrnd function in a loop, every times that normrnd runs in a new loop it will give me the same number? ( if I set parameters to a constant value);
for i = 1 :10
x(i) = normrnd(1,0.2);
end

 Réponse acceptée

the cyclist
the cyclist le 12 Sep 2013

0 votes

No. It will give a different number on every call (until you reach the end of the pseudorandom generator's period, which is enormous).

Plus de réponses (1)

Azzi Abdelmalek
Azzi Abdelmalek le 12 Sep 2013

0 votes

rng(14) % choose your seed
for i = 1 :10
x(i) = normrnd(1,0.2)
end

Catégories

En savoir plus sur Loops and Conditional Statements dans Centre d'aide et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by