Efficient Way to find index of max column for each row
64 ビュー (過去 30 日間)
古いコメントを表示
Hey I've an matrix of size n x m. I want to find the index of max_col corresponding to each row. I know, i can use a loop to check but is there any other efficient way to do that?
thanks in advance.
0 件のコメント
回答 (4 件)
Les Beckham
2022 年 7 月 12 日
編集済み: Les Beckham
2022 年 7 月 12 日
Are you wanting to find the column number of the maximum value in each row? If so, this is how you can do that:
A = magic(5) % example data
[m, idx] = max(A, [], 2) % max value from each row and column number where the max value occurs
If not, please clarify what you are trying to do.
0 件のコメント
Keshav
2022 年 7 月 12 日
Hi, Based on my understanding you have a matrix. for each row you want to find the index of maximum value. you can use the below code to do that.
x = [1 2 3; 5 3 4;10 8 9]
[mx,idx] = max(x,[],2)
here idx(i) will represent the index of column with max value in ith row.
0 件のコメント
Harshit Gupta
2022 年 7 月 12 日
Hi, I understand that you're trying to find an efficient way to find the maximum values in each row.
You can do this simply with the max() function on the matrix without using a for loop.
Here's an example:
M=[2 4 0 1;12 3 5 2;7 10 4 1;3 5 20 7]
[max_values, idx] = max(M') %row maximums
You can even get the column maximums and the maximum value of the matrix
[max_values, idx] = max(M) %col maximums
[matrix_max, idx] = max(M(:)) %matrix maximum
Hope this helps!
0 件のコメント
Anay Aggarwal
2022 年 7 月 12 日
Hi Varsha,
I have an understanding that you want to find the column number of maximum element in each row of a matrix.
You can perform the following operation:
x = [1 2 3; 4 50 6;11 8 9]
[mx,idx] = max(x,[],2)
Hope this helps
Regards
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Matrix Indexing についてさらに検索
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!