HelperGetNormalRandom Method (Double, Double) |
Returns random numbers according to an approximate normal distribution
with an average and standard deviation set by the caller.
Namespace: Bio.UtilAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public static double GetNormalRandom(
double average,
double standardDeviation
)
Public Shared Function GetNormalRandom (
average As Double,
standardDeviation As Double
) As Double
public:
static double GetNormalRandom(
double average,
double standardDeviation
)
static member GetNormalRandom :
average : float *
standardDeviation : float -> float
Parameters
- average
- Type: SystemDouble
Average result returned from calling the method - standardDeviation
- Type: SystemDouble
Standard deviation applied to the normal curve
Return Value
Type:
DoubleA random value
See Also