How to define minimum value matrix?

1 回表示 (過去 30 日間)
anil hamzacebi
anil hamzacebi 2020 年 12 月 8 日
コメント済み: anil hamzacebi 2020 年 12 月 8 日
Hello everyone, i have a 4x4 matrix and i can find the minimum values of each row.
A=[1,2,4,3; 4,3,7,13; 8,7,9,11; 16,14,2,7];
B=min(A, [], 2)
B =
1
3
7
2
But i need to create a matrix that gives me the columns chosen for minimum values. For example, for the A matrix this is;
C=[1,2,2,3];
I hope you understand the problem, and can help me. Thank you!!!
  1 件のコメント
dpb
dpb 2020 年 12 月 8 日
Read the doc for min carefully looking for what options you're not using...

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

採用された回答

David Hill
David Hill 2020 年 12 月 8 日
[~,idx]=min(A,[],2);
  1 件のコメント
anil hamzacebi
anil hamzacebi 2020 年 12 月 8 日
this really works, Thank you so much!!

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultidimensional Arrays についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by