Problem 45788. Median computation (★)
Given a vector of values, compute the median. The median is defined as the middle value in a set of sorted data. Thus, if
x = [ 3 1 5 2 4 ]
then the sorted data will be
[ 1 2 3 4 5 ]
and the middle value or median is 3. If x has an even number of elements, such as
x = [ 3 6 1 5 2 4 ]
Then there are 2 middle values in the sorted data and the median is average of the 2. Thus, sorted data is
[ 1 2 3 4 5 6]
and the median is 3.5.
Solution Stats
Solution Comments
Show commentsProblem Recent Solvers88
Suggested Problems
-
Back to basics 23 - Triangular matrix
1060 Solvers
-
Find the index of the largest value in any vector X=[4,3,4,5,9,12,0,4.....5]
385 Solvers
-
311 Solvers
-
Replace every 3rd element in a vector with 4
253 Solvers
-
Create logarithmically spaced values (★)
114 Solvers
More from this Author52
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!