The SDL Component Suite is an industry leading collection of components supporting scientific and engineering computing. Please visit the SDL Web site for more information....



MeanVar


Unit: SDL_matrix
Class: TMatrix, TIntMatrix, TMat3D
Declaration: procedure MeanVar (LowCol, LowRow, HighCol, HighRow: integer; var Mean, Variance: double); { class TMatrix, and TIntMatrix }
procedure MeanVar (LowCol, HighCol, LowRow, HighRow, LowLayer, HighLayer: integer; var Mean, Variance: double);{ class TMat3D }

The method MeanVar calculates the mean and the variance of all matrix elements within a specified range of cells. The range of matrix elements to be used is determined by the parameters LowRow, LowCol, HighRow, HighCol, and in the case of TMat3D LowLayer and HighLayer. If any of these parameters receives an invalid value, this value is automatically adjusted to the nearest border value (either 1 or NrOfColumns, NrOfRows or NrOfLayers, respectively).

The variable parameters Mean and Variance return the mean and the variance of the selected data.

Hint 1: If there are less than three values within the specified range of the matrix, the calculation of the variance is impossible. In this case a value of 1.0 is assigned to the variable Variance.

Hint 2: 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.

Hint 3: The function MeanVar assumes that the values used for the calculation of the variance are sample data. If you have to calculate the variance of a population (i.e. all values ever measured) you have to multiply the variance by a factor of  n/(n-1), with n being the number of values used for the calculation: n = (HighRow-LowRow+1)*(HighCol-LowCol+1).

Example: The statement Mat1.MeanVar (1,2,12,20,Mean,Vari); calculates the mean and the variance of all matrix elements with the indices [1,2] to [12,20], and returns them in the variables Mean and Vari.

Example: This method is used in the following example program (see http://www.lohninger.com/examples.html for downloading the code): simplepca



Last Update: 2023-Feb-06