median( ) command or function gives the median value of vector or matrix or array elements, after reading this MATLAB median topic, you will know the theory and examples.
Syntax:
median(n)
- n can be any vector or matrix.
Example: To find the median value of the vector.
Output:
n =
1 2 2 10 5 78
ans =
3.5000
Example: To find the median value of each column of the matrix.
Output:
n =
1 2 3
1 2 23
4 5 21
ans =
1 2 21
Explanation:
- 1, 2 and 21 are the median value of the first, second and third column of the matrix respectively.
Related Topics
MATLAB matrix inverseinv( ) command or function gives the inverse of a matrix, after reading this MATLAB…
MATLAB diagonal matrixdiag() command or function gives diagonal elements or creates a diagonal matrix, after reading this…
MATLAB linspacelinspace( ) command or function creates a row vector with elements that are linearly (equally)…
MATLAB titletitle() command puts the title on the plot, after reading this MATLAB title topic, you will…
MATLAB onesThis command creates an array of all ones, after reading this MATLAB ones topic, you…