Effacer les filtres
Effacer les filtres

How to find the median from each of the column with certain condition

1 vue (au cours des 30 derniers jours)
Idra
Idra le 17 Oct 2012
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)

Matt Fig
Matt Fig le 17 Oct 2012
Modifié(e) : Matt Fig le 17 Oct 2012
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 Logical dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by