How can I find the median of each row in a matrix?

1 Ansicht (letzte 30 Tage)
Whale Chicken
Whale Chicken am 3 Mai 2021
Kommentiert: Image Analyst am 5 Mai 2021
I have a matrix 150x4, how can I create a function to get the median values of all the rows? Without using matlabs existing functions
Final result should be 150 medians

Antworten (1)

Doddy Kastanya
Doddy Kastanya am 5 Mai 2021
Try this (assuming that your matrix is called A):
for i=1:150
x=sort(A(i,:));
median_value(i)=0.5*(x(2)+x(3));
end
You will get a vector of median_value at the end with 150 entries.
  1 Kommentar
Image Analyst
Image Analyst am 5 Mai 2021
sort() is an existing MATLAB built-in function that Whale says is not allowed. You'd need to write your own sort routine from low level commands. See Wikipedia for the algorithm.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by