Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl: the Markov chain saw
 
PerlMonks  

Re: biased random number picking

by RichardK (Parson)
on Jul 12, 2012 at 10:31 UTC ( [id://981355]=note: print w/replies, xml ) Need Help??


in reply to biased random number picking

Or maybe just

my @values = (100..200); my $i = int( rand(@values) ); my $j = $i; $j = int( rand(@values) ) while $i == $j;

Replies are listed 'Best First'.
Re^2: biased random number picking
by Lotus1 (Vicar) on Jul 12, 2012 at 14:47 UTC

    Since rand takes an expression as its argument and there are 101 elements in @values your code is equivalent to

    my $i = int( rand(101) );

      That's correct :)

      rand returns a value less than the expression so will return an index in the range 0..100. Which is just what we needed -- woot!

        I found your solution confusing since your array had 101 elements and so wouldn't work with the op's data. I realize now this was just a test array of junk values. Your solution works fine for your array of 101 elements since both indexes will be in the range 0..100. Putting the array inside the rand() function is a general solution in case the array size changes.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://981355]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (4)
As of 2024-04-19 13:32 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found