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

1 次查看(过去 30 天)
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?

采纳的回答

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

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 String Parsing 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by