|  | FloatRandomBetaDistribution Class | 
            Class FloatRandomBetaDistribution generates random numbers from a beta distribution.
            
 Inheritance Hierarchy
Inheritance HierarchySystemObject  CenterSpace.NMath.CoreFloatRandomBetaDistribution Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic class FloatRandomBetaDistribution : IRandomNumberDistribution<float>, 
	ICloneable
Public Class FloatRandomBetaDistribution
	Implements IRandomNumberDistribution(Of Single), ICloneable
public ref class FloatRandomBetaDistribution : IRandomNumberDistribution<float>, 
	ICloneable
type FloatRandomBetaDistribution = 
    class
        interface IRandomNumberDistribution<float32>
        interface ICloneable
    endThe FloatRandomBetaDistribution type exposes the following members.
 Constructors
Constructors|  | Name | Description | 
|---|
|  | FloatRandomBetaDistribution | Constructs a random number generator for a beta distribution
            using default P of 1.0, Q of 1.0, displacement of 0.0, and scale of 1.0. | 
|  | FloatRandomBetaDistribution(Single, Single, Single, Single) | Constructs a random number generator for a beta distribution
            using the specified distribution parameters. | 
|  | FloatRandomBetaDistribution(Single, Single, Single, Single, FloatRandomBetaDistributionGenerationMethod) | Constructs a random number generator for a beta distribution
            using the specified distribution parameters. | 
Top Properties
Properties|  | Name | Description | 
|---|
|  | Displacement | Gets the displacement. | 
|  | Method | Gets the generation method. | 
|  | P | The first shape parameter. | 
|  | Q | The second shape parameter. | 
|  | Scale | Gets the scale. | 
Top Methods
Methods Remarks
Remarks
            The beta distribution f(x:p,q,a,b) = {1/[B(p,q)*b^(p+q-1)]}*(x-a)^(p-1)*(b + a - x)^(q-1)
            where B(p,q) is the complete beta function, p and q are shape parameters,
            a is the displacement or location parameter, and b is the scale factor.
            
 See Also
See Also