how to find column index of max value for each row of a matrix 378x5 size?

13 views (last 30 days)
hi
i have a matrix size 378x5, how do i find the index column of the maximum value of each row?
Thanks
  1 Comment
Rik
Rik on 30 May 2019
(I'm on mobile so I can't check)
The second output of max can do this. You may need to use a loop.

Sign in to comment.

Accepted Answer

meghannmarie
meghannmarie on 30 May 2019
[~,I] = max(A,[],2)

More Answers (0)

Tags

Community Treasure Hunt

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

Start Hunting!