Find indicies of k smallest matrix elements

I'm trying to find the indicies of smallest k matrix elements.
For example if I have
A = [10 5 2; 34 5 21; 4 6 8];
and I want to find the smallest 2 elements indicies then I want indicies 7 and 3.

 Risposta accettata

[~, indices] = sort(A(:), 'ascend');
ind = indices(1:k);

Più risposte (1)

[~,idx] = mink(A,2);

3 Commenti

The reason is because the OP was using older version of MATLAB, in case you were wondering.
I'm using R2020b, that's the newest isn't it?
mink gives minimums over a dimension, not the whole matrix. Sindar's code doesn't work for my example above.
Unfortunately not everyone has the Crystal Ball.

Accedi per commentare.

Categorie

Scopri di più su Condensed Matter & Materials Physics in Centro assistenza e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by