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

1 visualizzazione (ultimi 30 giorni)
Find the index of the largest 3 elements?

Risposta accettata

Walter Roberson
Walter Roberson il 20 Mar 2014
"for" loop.
  2 Commenti
Walter Roberson
Walter Roberson il 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.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Multidimensional Arrays in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by