|
MathTukeySummary
Calculates the Tukey's five-number summary (minimum, lower quartile, median, upper quartile, maximum) for the array elements.
bool MathTukeySummary(
|
Parameters
array[]
[in] Array of real values.
removeNAN
[in] Flag that indicates if non-numeric values are to be removed.
minimum
[out] Variable to store the minimum value.
lower_hinge
[out] Variable to store the lower quartile.
median
[out] Variable to store the median value.
upper_hinge
[out] Variable to store the upper quartile.
maximum
[out] Variable to store the maximum value.
Return Value
Returns true if successful, otherwise false.