How to find index of maximum value/s of a matrix?
Show older comments
I have a 256-by-1 matrix, let's name it 'Matrix1'. I used sort to arrange the elements in descending order.
maxes = sort(Matrix1, 'descend');
How can I get the corresponding indices (from Matrix1) of that first five maximum values outputted by maxes?
EDIT: I also accept the sort method. I've already tried that. However, is there a chance this can be solved using both sort and find function too?
1 Comment
Stephen23
on 1 May 2015
The sort documentation is a good place to start:
and look for the second output: these are the indices.
Accepted Answer
More Answers (0)
Categories
Find more on Shifting and Sorting Matrices 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!