|   | LognormalDistributionRandom Method (Double, Double) | 
        
         
              Generates a random observation 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
Syntaxpublic static double Random(
	double location,
	double shape
)
Public Shared Function Random ( 
	location As Double,
	shape As Double
) As Double
Parameters
- location
- Type: SystemDouble
 The distribution's location value.
- shape
- Type: SystemDouble
 The distribution's shape deviation.
Return Value
Type: 
DoubleA random double value sampled from the specified Lognormal distribution.
 See Also
See Also