Click or drag to resize

CvInvokeRandn Method (IInputOutputArray, IInputArray, IInputArray)

http://www.emgu.com
Fills the array with normally distributed random numbers.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static void Randn(
	IInputOutputArray dst,
	IInputArray mean,
	IInputArray stddev
)

Parameters

dst
Type: Emgu.CVIInputOutputArray
Output array of random numbers; the array must be pre-allocated and have 1 to 4 channels.
mean
Type: Emgu.CVIInputArray
Mean value (expectation) of the generated random numbers.
stddev
Type: Emgu.CVIInputArray
Standard deviation of the generated random numbers; it can be either a vector (in which case a diagonal standard deviation matrix is assumed) or a square matrix.
See Also