ParetoDistribution Constructor |
Initializes a new Pareto distribution.
Namespace:
Meta.Numerics.Statistics.Distributions
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public ParetoDistribution(
double mu,
double alpha
)
Public Sub New (
mu As Double,
alpha As Double
)
public:
ParetoDistribution(
double mu,
double alpha
)
new :
mu : float *
alpha : float -> ParetoDistribution
Parameters
- mu
- Type: SystemDouble
The scale parameter, which must be positive. - alpha
- Type: SystemDouble
The shape parameter, which must be positive.
See Also