rBetaG

fun rBetaG(alpha: Double, beta: Double, minimum: Double, maximum: Double, streamNum: Int): Double

This beta is restricted to the range of (minimum,maximum)

Return

the random value

Parameters

alpha

alpha (first shape) parameter

beta

beta (second shape) parameter

minimum

the minimum of the range, must be less than maximum

maximum

the maximum of the range

streamNum

the stream number from the stream provider to use


fun rBetaG(alpha: Double, beta: Double, minimum: Double, maximum: Double, rng: RNStreamIfc = defaultRNStream()): Double

This beta is restricted to the range of (minimum,maximum)

Return

the random value

Parameters

alpha

alpha (first shape) parameter

beta

beta (second shape) parameter

minimum

the minimum of the range, must be less than maximum

maximum

the maximum of the range

rng

the RNStreamIfc