BernoulliSample(Random, Double) Method | 
            Samples a Bernoulli distributed random variable.
            
Namespace: Altaxo.Calc.DistributionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3261.0 (4.8.3261.0)
Syntaxpublic static int Sample(
	Random rnd,
	double p
)
Parameters
- rnd  Random
 - The random number generator to use.
 - p  Double
 - The probability (p) of generating one. Range: 0 ≤ p ≤ 1.
 
Return Value
Int32A sample from the Bernoulli distribution.
See Also