C# 클래스 RandomOps.KISS

Pseudo-Random Number Generator (PRNG) based on KISS as described in the paper: G. Marsaglia, Random Number Generators, Journal of Modern Applied Statistical Methods, 2003, vol. 2, no. 1, p. 2-13. Period of this PRNG is greater than 2^124. Not thread-safe.
This is a translation of the C source-code published in the paper cited above with Marsaglia's authorization, also under the license in license.txt
상속: RanUInt32Array
파일 보기 프로젝트 열기: DanWBR/dwsim3

공개 프로퍼티들

프로퍼티 타입 설명
SeedDefault System.UInt32[]

공개 메소드들

메소드 설명
KISS ( ) : System

Constructs the PRNG-object without a seed. Remember to seed it before drawing random numbers.

KISS ( Random rand ) : System

Constructs the PRNG-object and uses another RNG for seeding.

KISS ( UInt32 seed ) : System

Constructs the PRNG-object using the designated seed. This is useful if you want to repeat experiments with the same sequence of pseudo-random numbers.

Rand ( ) : UInt32

Draw a random number in inclusive range {0, .., RandMax}

Seed ( UInt32 seed ) : void

Seed with an array.

메소드 상세

KISS() 공개 메소드

Constructs the PRNG-object without a seed. Remember to seed it before drawing random numbers.
public KISS ( ) : System
리턴 System

KISS() 공개 메소드

Constructs the PRNG-object and uses another RNG for seeding.
public KISS ( Random rand ) : System
rand Random
리턴 System

KISS() 공개 메소드

Constructs the PRNG-object using the designated seed. This is useful if you want to repeat experiments with the same sequence of pseudo-random numbers.
public KISS ( UInt32 seed ) : System
seed System.UInt32
리턴 System

Rand() 공개 최종 메소드

Draw a random number in inclusive range {0, .., RandMax}
public final Rand ( ) : UInt32
리턴 System.UInt32

Seed() 공개 최종 메소드

Seed with an array.
public final Seed ( UInt32 seed ) : void
seed System.UInt32
리턴 void

프로퍼티 상세

SeedDefault 공개적으로 정적으로 프로퍼티

Default seed.
public static UInt32[],System SeedDefault
리턴 System.UInt32[]