Class RandGenBeta generates random numbers from a beta distribution.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
[SerializableAttribute] public class RandGenBeta : RandomNumberGenerator |
| Visual Basic (Declaration) |
|---|
<SerializableAttribute> _ Public Class RandGenBeta _ Inherits RandomNumberGenerator |
| Visual C++ |
|---|
[SerializableAttribute] public ref class RandGenBeta : public RandomNumberGenerator |
Remarks
A random variable, W, is said to have a beta distribution of alpha a and beta b
if it has a probability density function f(x) = (1 / beta(a, b)) * (x ^ (a - 1)) *
((1 - x) ^ (beta - 1)) where is the beta function.
Inheritance Hierarchy
System..::.Object
CenterSpace.NMath.Core..::.RandomNumberGenerator
CenterSpace.NMath.Core..::.RandGenBeta
CenterSpace.NMath.Core..::.RandomNumberGenerator
CenterSpace.NMath.Core..::.RandGenBeta