 | DoubleRandomGammaDistribution Constructor (Double, Double, Double) |
Constructs a random number generator for a gamma distribution
using the specified distribution parameters.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.4
Syntaxpublic DoubleRandomGammaDistribution(
double shape,
double displacement,
double scale
)
Public Sub New (
shape As Double,
displacement As Double,
scale As Double
)
public:
DoubleRandomGammaDistribution(
double shape,
double displacement,
double scale
)
new :
shape : float *
displacement : float *
scale : float -> DoubleRandomGammaDistribution
Parameters
- shape
- Type: SystemDouble
Shape. - displacement
- Type: SystemDouble
Displacement. - scale
- Type: SystemDouble
Scale factor.
RemarksIf shape=1, the gamma distribution reduces to the exponential distribution.
See Also