About site: Algorithms/Pseudorandom Numbers - Pseudo Random Number Generators
Return to Computers
  About site: http://www.agner.org/random/

Title: Algorithms/Pseudorandom Numbers - Pseudo Random Number Generators Algorithms for good random number generators with theoretical discussion and software examples.
Pseudo-random_Numbers A guide to the literature.

Random_Bots Generators for random number samples, random selection and random check number audits. Windows software for on-line purchase.

Random_Number_Generation,__Taygeta_Scientific_Inc_ Information and articles on random number generation.

Random_Number_Generator A small, simple open-source shareware program by Scott Donato Saccenti [Win95].

Random_Number_Generator_Algorithms Documentation of algorithms in the GNU Scientific Library Reference Manual.

RANDPOLY A REDUCE package based on a port of the Maple random polynomial generator together with some support facilities for the generation of random numbers and anonymous procedures. By Francis J. Wright.


  Alexa statistic for http://www.agner.org/random/





Get your Google PageRank






Please visit: http://www.agner.org/random/


  Related sites for http://www.agner.org/random/
    RngPack A pseudorandom number generator package for Java. Source code free under BSD licence.
    Segobit_Software__Random_Number_Generator_Pro Windows application to generate several random numbers in a given range, subject to constraints like excluding certain digits.
    Try_to_Find_Where_the_Ball_Is_Hidden A small test to see how well humans can generate random numbers compared to computer predictions.
    UNURAN Universal Non-Uniform RANdom number generators: a GPL library of C functions to generate nonuniform random numbers, by Josef Leydold and Wolfgang Hoermann of the University of Economics, Vienna.
    WWW_Virtual_Library__Random_numbers_and_Monte_Carlo_Methods Links to related conferences, papers, software, webpages, people.
    Communications_in_Computer_Algebra The ACM SIGSAM Bulletin. Some tables of contents and sample articles.
    Computer_Algebra_Nederland_(CAN) Coordinates the use of computer algebra in education and research. Research reports, newsletters and historical material.
    GROEBNER__A_Package_for_Calculating_Gröbner_Bases A REDUCE package by H. Melenk and W. Neun, Konrad--Zuse--Zentrum, Berlin.
    Groebner_Bases Definitions and examples, with Java applet.
    Journal_of_Symbolic_Computation Editors' site. Abstracts, contents, calls for papers and author information.
    SIGSAM ACM Special Interest Group in Symbolic and Algebraic Manipulation. Site has details of meetings, reports and other links.
    SymbolicNet Information centre for symbolic mathematical computation. Links to research and software.
    UKcomputerparts_com Sells all computer components and peripherals.
    Ullswater_Systems_LTD Supplying and maintaing personal computers.
    Unicom_Computer_Services Provides computer hardware such as modems, cases, sound cards, video, keyboard, mouse and cpus, also complete systems available.
    Unicom-computer_com Computer hardware and software sold wholesale.
    UniLink Authorized value-added reseller of Unisys equipment.
    United_Electronic_Services Retailer of new, used and refurbished bar code scanners and printers, POS systems, hand held computers and portable data terminals, parts and accessories.
    United_Micro,_Inc Specializing in computers, desktops, motherboards and components.
    Universal_Computer_Rental Computer and audio/visual rentals, PC and Mac accessories.
    Universal_Computers Sells desktop and laptop computers, peripherals and accessories.
    Unreal_Computer Richland, Washington based retailer of computer systems and components.
    Upgrade_Source Computer hardware upgrades.
    UpTime_Computer_Systems Provides hardware from all major vendors from desktop units to complete networks with data storage solutions and software.
    USA_Systems Offers customized computer systems, computer parts and peripherals.
    USB_2_0_Online Sells USB products which include hard drive enclosures, CD-RW drives, PCI cards, hubs, and flash readers.
    USBdiscount_com Sells USB related hardware products.
    USBMax Provides USB products including adapters, drives, enclosures, hard drive, keyboards and mice.
    UserEasy_Computer_Systems Configures custom-built computers, notebooks and servers.
    GNUton The GNUton project is a re-implementation of the (defunct) Apple Newton platform. It consists of the virtual machine, storage architecture and templates for GUI and general OS features. It aims to sup
    Arculator Arculator, an open source Archimedes emulator for Windows, and RPCEmu, an open source Risc PC emulator for Windows.
    BBC_Connect A front end for BeebEm, B-Em, PcBBC and ElectrEm. Includes project status page.
    ARMOric Freeware emulator for Acorn.
    Club_Europe_Oric_home_page The home page of the CEO magazine and news about the Oric community. [English/French]
    Oric_Emulators A collection of Oric 1 and Atmos emulators and emulation tools for Acorn, Amiga, Atari, Linux, MacOS, and Windows.
    Oric/MacOS An Oric emulator for the Macintosh that emulates an Oric 1 and an Oric Atmos. It supports full sound and almost perfect compatibility with a real Oric. It includes ROM files for 6 languages as well as
    The_Reluctant_Dragon Various pages for the Oric Micro, including a collection of hints, tips, cheats, maps and solutions for Oric games. Also a guide to the Sega Master System game, Miracle Warriors.
    Swedish_Oric_Homepage A site full of downloadable games for the oric and the oric manual for use with the Oric emulator.
    Xeuphoric An open source Oric-1, Oric Atmos, and Telestrat emulator for Unix/X based on Fabrice Francès' Oric emulator.
    ADF_Opus_Homepage Free software (GNU GPLed) for Windows for manipulating ADF, ADZ, and DMS files, hardfiles, disk dumps and, under NT4, Amiga hard drives.
This is now2007.com cache of m/ as retrieved on 2009.01.08 now2007.com's cache is the snapshot that we took of the page as we crawled the web. The page may have changed since that time.
Pseudo random number generators   collapseHomeexpandCultural Selection TheoryexpandEvolutionary biologyexpandRandom number generatorsSoftware optimization resourcesexpandWeb softwareContact address  

Pseudo random number generators uniform and non-uniform distributions

This page contains software libraries for some very good random number generators. The basic random number generators make floating point or integer random numbers with uniform distributions. This code is available in C++ language and as binary function libraries for several different platforms. The non-uniform random number generators make random variates with several different distributions. This code is available in C++ language. Code examples are included, showing how to use these software libraries. All code is provided with open source under the Gnu general public license. These generators are intended for Monte Carlo applications, not for cryptographic applications.

Download packages:

Uniform random number generators in C++ Description: C++ class library containing the following random number generators: Mersenne twister, SFMT and Mother-of-all. Can generate floating point or integer random numbers with uniform distribution, and random bits. Very good randomness, high resolution, extremely long cycle lengths, and high speed. Supports multi-threaded applications. Examples included. System requirements: Any C++ compiler, any operating system. Further description and instructions File name: randomc.zip, size: 224653, last modified: 2008-Dec-12.Download C++ random number generators.   Uniform random number generators as binary libraries Description: Contains the same random number generators as the abovementioned C++ package, but implemented as binary libraries in *.lib, *.dll and *.a files. Coded in assembly language for optimal speed. Supports many different compilers and operating systems, including 32-bit and 64-bit Windows, Linux, BSD and Intel-based Mac. System requirements: Any x86 or x86-64 platform. Can be called from compiled languages such as C and C++. Further description and instructions File name: randoma.zip, size: 313573, last modified: 2008-Dec-12.Download random number generator binary libraries.   Non-uniform random number generators in C++ Description: C++ class library generating random numbers with the following distributions: normal, truncated normal, bernoulli, poisson, binomial, hypergeometric, Wallenius' and Fisher's noncentral hypergeometric, multinomial, multivariate hypergeometric, and multivariate Fisher's and Wallenius' noncentral hypergeometric distributions. A function for shuffling numbers is also provided. Includes C++ examples showing how to use these functions for simulating evolution and for other purposes. Most of the functions are fast and accurate, even for extreme values of the parameters. You have the choice of using any of the uniform random number generators in the above C++ libraries or binary libraries as base for these non-uniform random number generators. Further description and instructions. Definition of distributions pdf format. Wallenius' noncentral hypergeometric distribution theory. Theoretical description of sampling methods used pdf format. File name: stocc.zip, size: 362662, last modified: 2008-Dec-12.Download non-uniform random number generators.   List of random numbers Description: A list of 10000 random numbers generated with a combined generator. File name: 10000ran.zip, size: 49098, last modified: 2005-May-24.Download 10000 random numbers.   R package for noncentral hypergeometric distributions Description: Package for the R language (www.r-project.org) for calculating the various noncentral hypergeometric distributions. Useful for biased urn models, models of biased sampling and evolution by natural selection. Package name: BiasedUrn, last modified: 2007-Jun-16. BiasedUrn.   Comments to the theory of these random number generators can be posted to my discussion board. Follow my research on the noncentral hypergeometric distributions. Please don't mail me with your programming problems. Your mail will not be answered.

Links to related sites

PLAB: A Server on the Theory and Practice of Random Number Generation   The R Project for Statistical Computing. Free software system for mathematical and statistical computing.   Ernst Stadlober's page on non-uniform random number generation, including the Win-rand package which contains many other distributions than the ones supplied here, and a graphic interface to show the distribution curves.     Ranlib: library of functions for random number generators and non-uniform variates ftp://odin.mda.uth.tmc.edu/pub/source and ftp://odin.mda.uth.tmc.edu/pub/msdos   RngPack: Random number generators for Java: http://www.honeylocust.com/RngPack/   Matsumoto's Mersenne Twister RNG: http://www.math.sci.hiroshima-u.ac.jp/~m-mat/eindex.html   Regress: Statistics package for Macintosh: http://www.causaScientia.org/software/Regress_plus.html   628205 ↑ IndexNext →
 

Algorithms

for

good

random

number

generators

with

theoretical

discussion

and

software

examples.

http://www.agner.org/random/

Pseudo Random Number Generators 2009 January

dvd rental

dvd


Algorithms for good random number generators with theoretical discussion and software examples.

Rules




© 2005 Internet Explorer 5+ or Netscape 6+

Recommended Sites: 1. Arts - Business - Computers - Games - Health - Home - Kids and Teens - News - Recreation - Reference - Regional - Science - Shopping - Society - Sports - World Miss Gallery - Top Anime Hentai - DVD rental by mail - vShare YouTube Clone - MPAA - Bankruptcy - Mobile Phone - Bargain Flights
2009-01-08 15:54:16

Copyright 2005, 2006 by Webmaster
Websites is cool :)