필터 지우기
필터 지우기

how to group a matrix using quartile

조회 수: 6 (최근 30일)
farfar
farfar 2018년 10월 14일
답변: Walter Roberson 2018년 10월 14일
Hello
assume I have a matrix :
a=[1 0.2;2 0.1;3 0.0002;4 2;5 1;6 0.00004;7 3;8 1.5;9 4]
b=a(:,2)
c = sort(b)
Q1 = median(c(find(c<median(c))))
percentile %25 would be 0.0501, how can i get a new matrix belong under Q1, like:
d=[3 0.0002;6 0.0004]
Thanks !

채택된 답변

Walter Roberson
Walter Roberson 2018년 10월 14일
mask = b < quantile(b, 0.25);
a(mask,:)

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by