|
LognormalDistributionRandom Method (Double, Double, Int32)
|
Generates a random vector of observations from the
Lognormal distribution with the given parameters.
Namespace:
Accord.Statistics.Distributions.Univariate
Assembly:
Accord.Statistics (in Accord.Statistics.dll) Version: 3.8.0
Syntax public static double[] Random(
double location,
double shape,
int samples
)
Public Shared Function Random (
location As Double,
shape As Double,
samples As Integer
) As Double()
Request Example
View SourceParameters
- location
- Type: SystemDouble
The distribution's location value. - shape
- Type: SystemDouble
The distribution's shape deviation. - samples
- Type: SystemInt32
The number of samples to generate.
Return Value
Type:
DoubleAn array of double values sampled from the specified Lognormal distribution.
See Also