Command Reference : Function Reference : Function Reference: C
  
 
@cquantile
Quantiles for each column of a matrix.
Syntax: @cquantile(m, q)
m: matrix
q: number
Return: vector
Returns the column q-quantile using the Cleveland definition. q must be between zero and one.
Examples
Let M1 be a matrix. Then
= @cquantile(m1, .5)
and
= @cmedian(m1)
are equivalent.
Cross-references
See also @cmedian.