| RNGGaussian Method |
Returns the next random number sampled from the Gaussian distribution.
The method transforms the state using the MWC algorithm and returns 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.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public 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:
Double[Missing <returns> documentation for "M:OpenCvSharp.RNG.Gaussian(System.Double)"]
See Also