median

Compute median values.

Syntax

m=median(x)

m=median(x,dim)

Inputs

x
Data sample.
Type: double
Dimension: vector | matrix
dim
Dimension on which to perform the calculation.
Default: first non-singleton dimension.
Type: integer
Dimension: scalar

Outputs

m
Median.

Examples

Vector median example:
x=[9.3, 10.6, 11.9, 13.3, 15.1, 18.2];
m=median(x)
m = 12.6
Matrix median example:
x=[9.3, 4.8; 10.6, 6.6; 11.9, 8.0; 13.3, 9.3; 15.1, 10.6; 18.2, 11.9];
m=median(x)
m = [Matrix] 1 x 2
12.60000   8.65000