How to find cell where max is located?
Show older comments
Hi, I have a vector, 1X15 - one row and 15 columns and I can use the max command to find the maximum value among the cells. But how can I find out which column this max value is located in? Many thanks
Answers (1)
Azzi Abdelmalek
on 10 Jul 2015
Edited: Azzi Abdelmalek
on 10 Jul 2015
A=[1 2 0 6 1 -1]
[max_val,idx]=max(A)
1 Comment
Ujjayant Chakravorty
on 10 Jul 2015
Categories
Find more on Cell Arrays in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!