Effacer les filtres
Effacer les filtres

How to find cell positions of values within specific interquartile range from a column vector?

1 vue (au cours des 30 derniers jours)
I have one year daily rainfall values in A. I extracted values of interest (B) from A within quantiles .85 to .99 using following:
V = quantile(A,[0.85 .99])
B = A(A>V(1) & A<V(2))
How to find corresponding cell positions of these values in A?

Réponse acceptée

KSSV
KSSV le 31 Jan 2020
idx = find(A>V(1) & A<V(2)) ;

Plus de réponses (0)

Catégories

En savoir plus sur Dates and Time dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by