How to find the median from each of the column with certain condition
Afficher commentaires plus anciens
Hi!
I have matrices like this:
x = randn(10,10);
indices = find(abs(x)>2);
x(indices) = 0;
How to find the median from each of the column for the remaining elements excluding the '0', since if I do this: y=median(x) this will appear:
y =
Columns 1 through 5
0.1897 -0.3006 0.0776 0.2009 0.4715
Columns 6 through 10
-0.0588 -0.1970 0.2665 0.2033 0.1836
The median is found by including the '0'.
Thank you!
Réponses (1)
Note that using FIND is not necessary....
x = randn(10,10);
indices = abs(x)>2; % This is a logical index.
x(indices) = nan; % Use nan instead of 0.
mn = nanmean(x)
md = nanmedian(x)
Catégories
En savoir plus sur NaNs dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!