Efficient Way to find index of max column for each row
64 views (last 30 days)
Show older comments
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 Comments
Answers (4)
Les Beckham
on 12 Jul 2022
Edited: Les Beckham
on 12 Jul 2022
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 Comments
Keshav
on 12 Jul 2022
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 Comments
Harshit Gupta
on 12 Jul 2022
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 Comments
Anay Aggarwal
on 12 Jul 2022
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 Comments
See Also
Categories
Find more on Matrix Indexing in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!