フィルターのクリア

How to know the location of the minimun value from a vector?

5 ビュー (過去 30 日間)
Isti
Isti 2012 年 5 月 6 日
I have a vector like this: A =
0.2008 0.2011 0.2011 0.1979 0.2003
then the minimun value is: 0.1979 which located on (1,4)
So I want to take the location of that value like above. What to do? Thanks before :')

採用された回答

Andrei Bobrov
Andrei Bobrov 2012 年 5 月 6 日
A = [0.2008 0.2011 0.2011 0.1979 0.2003]
[c,idx] = min(A)
for matrix
eg:
A = rand(8);
solution:
[vc,irows] = min(A);
[v,icols] = min(vc);
out = [v irows(icols) icols];
or:
v = min(A(:));
[irows,icols] = find(A == v);
or:
[v,ii] = min(A(:));
[irows,icols] = ind2sub(size(A),ii);

その他の回答 (1 件)

zhenqiang
zhenqiang 2012 年 5 月 6 日
good learning

カテゴリ

Help Center および File ExchangeElementary Math についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by