90% Percentile of Matrix

121 ビュー (過去 30 日間)
Jonathan Moorman
Jonathan Moorman 2020 年 8 月 17 日
コメント済み: Star Strider 2020 年 9 月 3 日
Hi! I am trying to find a way to calculate the 90% percentile of a matrix (1,n) . I provide an example below, and the value I would need to find is 0.292. (Note the matrix will changes in length). How could this be done?
[0.289, 0.254, 0.287, 0.292, 0.289, 0.267, 0.289, 0.304, 0.284, 0.282]

採用された回答

Star Strider
Star Strider 2020 年 8 月 17 日
Here are two possibilities, the second of which gives you the exact value in your Question:
v = [0.289, 0.254, 0.287, 0.292, 0.289, 0.267, 0.289, 0.304, 0.284, 0.282];
Out1 = prctile(v, 90)
Out2 = interp1(linspace(1/numel(v),1,numel(v)), sort(v), 0.9)
producing:
Out1 =
0.2980
Out2 =
0.2920
.
  6 件のコメント
Jonathan Moorman
Jonathan Moorman 2020 年 9 月 3 日
Working great again. Thanks!
Star Strider
Star Strider 2020 年 9 月 3 日
As always, my pleasure!

サインインしてコメントする。

その他の回答 (1 件)

jonas
jonas 2020 年 8 月 17 日
There is probably a one-liner for this, but I guess you could use
A = [0.289, 0.254, 0.287, 0.292, 0.289, 0.267, 0.289, 0.304, 0.284, 0.282];
B = sort(A);
id = round(numel(A).*0.9)
B(id)

カテゴリ

Help Center および File ExchangeCreating and Concatenating Matrices についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by