How to select the indexes of maximum 3 values in the array without sorting?

1 view (last 30 days)
Find the index of the largest 3 elements?

Accepted Answer

Walter Roberson
Walter Roberson on 20 Mar 2014
"for" loop.
  2 Comments
Walter Roberson
Walter Roberson on 20 Mar 2014
for K = 1 : length(x)
if x(K) > 5
disp(K)
end
end
the above example does not try to find any maximums, it just shows how you can create a loop that examines values in the array and does something conditionally.

Sign in to comment.

More Answers (0)

Categories

Find more on Multidimensional Arrays in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!