Click or drag to resize
StdRandomPareto Method (Double)
Returns a random real number from a Pareto distribution with shape parameter alpha (α).

Namespace: Algs4Net
Assembly: Algs4Net (in Algs4Net.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
C#
public static double Pareto(
	double alpha
)

Parameters

alpha
Type: SystemDouble
alpha (α) shape parameter

Return Value

Type: Double
a random real number from a Pareto distribution with shape parameter alpha
Exceptions
ExceptionCondition
ArgumentExceptionunless alpha > 0.0
See Also