Generate random's number?

Hi;
How can I create a random's stream that generated only one number?
Exemple;
I have this strema 0,40,80,110,150,180.... I would like that to have a variable rappresented by one number choosed randomly from the stream.
Thanks Edoardo

 Akzeptierte Antwort

Matt J
Matt J am 31 Okt. 2012

1 Stimme

out=stream(randi(length(stream)));

Weitere Antworten (1)

José-Luis
José-Luis am 31 Okt. 2012

1 Stimme

nVals = numel(your_stream);
your_val = your_stream(randperm(nVals,1));

Kategorien

Mehr zu Random Number Generation finden Sie in Hilfe-Center und File Exchange

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by