Quartiles
Declaration: |
TMatrix.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. |
|