How to determine the index of two smallest probability in a vector

1 回表示 (過去 30 日間)
fyza affandi
fyza affandi 2018 年 11 月 19 日
コメント済み: fyza affandi 2018 年 11 月 19 日
I have a vector A
A=[0.7188 0.0625 0.0625 0.0469 0.0313 0.0156 0.0156 0.0156 0.0156 0.0156]
How can I find the two smallest probabilities and result only the index .The result will be :-
b=[9 10]

採用された回答

madhan ravi
madhan ravi 2018 年 11 月 19 日
編集済み: madhan ravi 2018 年 11 月 19 日
A=[0.7188 0.0625 0.0625 0.0469 0.0313 0.0156 0.0156 0.0156 0.0156 0.0156]
index = find(ismember(A,min(A)))
b = index(end-1:end)
  7 件のコメント
madhan ravi
madhan ravi 2018 年 11 月 19 日
Asking in the forum is better , if you have a question post a separate question .
fyza affandi
fyza affandi 2018 年 11 月 19 日
Okay sir. Thank you

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMatrix Indexing についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by