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....



Quartiles


Unit:SDL_matrix
Class:TMatrix, TIntMatrix
Declaration:function Quartiles (LowCol, LowRow, HighCol, HighRow: integer; var Q1, Q2, Q3: double): boolean;

The function Quartiles returns the quartiles of the distribution of all matrix elements in the range of the matrix as defined by the parameters LowCol, LowRow, HighCol, and HighRow. The first, second, and third quartile are returned in the variable parameters Q1, Q2, and Q3, respectively. Please note that the second quartile Q2 is often denoted as the median of the distribution. The function returns a TRUE value if the quartiles are valid. A returned FALSE value indicates a memory overflow problem.

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.

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



Last Update: 2023-Feb-06