GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Math::Random::OO::Uniform(3) User Contributed Perl Documentation Math::Random::OO::Uniform(3)

Math::Random::OO::Uniform - Generates random numbers from the uniform distribution

version 0.22

  use Math::Random::OO::Uniform;
  push @prngs,
      Math::Random::OO::Uniform->new(),     # range [0,1)
      Math::Random::OO::Uniform->new(5),    # range [0,5)
      Math::Random::OO::Uniform->new(-1,1); # range [-1,1)
  $_->seed(42) for @prngs;
  print( $_->next() . "\n" ) for @prngs;

This subclass of Math::Random::OO generates random reals from a uniform probability distribution.

 $prng1 = Math::Random::OO::Uniform->new();
 $prng2 = Math::Random::OO::Uniform->new($high);
 $prng3 = Math::Random::OO::Uniform->new($low,$high);

"new" takes up to two optional parameters and returns a new "Math::Random::OO::Uniform" object. With no parameters, the object generates random numbers in the range of zero (inclusive) to one (exclusive). With a single parameter, the object generates random numbers from zero (inclusive) to the value of the parameter (exclusive). Note, the object does this with multiplication, so if the parameter is negative, the function will return negative numbers. This is a feature or bug, depending on your point of view. With two parameters, the object generates random numbers from the first parameter (inclusive) to the second parameter (exclusive). (Actually, as long as you have two parameters, "new" will put them in the right order).

 $rv = $prng->seed( @seeds );

This method seeds the random number generator. At the moment, only the first seed value matters. It should be a positive integer.

 $rnd = $prng->next();

This method returns the next random number from the random number generator. It does not take any parameters.

David Golden <dagolden@cpan.org>

This software is Copyright (c) 2013 by David Golden.

This is free software, licensed under:

  The Apache License, Version 2.0, January 2004
2013-06-09 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.