DataLab is a compact statistics package aiming at exploratory data analysis. Please visit the DataLab Web site for more information....


FillRandomNormal

Declaration: TMatrix.FillRandomNormal (LowCol, HighCol, LowRow, HighRow: integer; Mean, StdDev: double);
The method FillRandomNormal sets all elements of the matrix to normally distributed random values with a mean of Mean and a standard deviation of StdDev. You can fill a particular rectangular region of the matrix by specifying the lower and upper columns and rows of the area to be filled (parameters LowCol, HighCol, LowRow and HighRow).

Hint: Setting both the low and high parameter of a dimension (i.e. LowCol and HighCol) to zero values forces the method to use all elements of that dimension.