Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Hi,

I've got a problem with the precision of the random number generator.

I want if() to be true at a rate of 1/40.000, however, rand() is not precise enough and outputs 0 quite often (maybe a bit dept problem?). e.g.

if(rand(40.000)<1) is true ~ 100/40.000

I tried rand(n)-1>n-1, or using the Math::Random module but this does not improve the randomness enough.

Example code:
use strict; use warnings; my $time = 120; my $D=10000; my $dt=1/$D; my $tt=0; my $rateon=1; my $count=0; while($time>$tt){ $tt=$tt+$dt; my $rand = rand($D); if(($rand)<=$rateon) { $count++; printf("%f > %f\n", $rateon, $rand) or die $!; } } print "$count total" or die $!;
Thanks!

Update: This hack works, although is not ideal:

use strict; use warnings; my $time = 120; my $D=10000; my $sqrtd=sqrt($D); my $dt=1/$D; my $tt=0; my $rateon=40; my $count=0; while($time>$tt){ $tt=$tt+$dt; my $rand = rand($sqrtd); my $rand2 = rand($sqrtd); if($rand<1 && $rand2<1 && rand($rateon)<1) { $count++; } } print "$count total " or die $!;

In reply to rand() precision low, looking for a fast way to get high precision rand float? by Klaas

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-23 02:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found