http://www.emgu.com
Returns the next random number sampled from the Gaussian distribution.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic double Gaussian(
double sigma
)
Public Function Gaussian (
sigma As Double
) As Double
public:
double Gaussian(
double sigma
)
member Gaussian :
sigma : float -> float
Parameters
- sigma
- Type: SystemDouble
standard deviation of the distribution.
Return Value
Type:
DoubleReturns the next random number from the Gaussian distribution N(0,sigma) . That is, the mean value of the returned random numbers is zero and the standard deviation is the specified sigma .
See Also