Finding largest values in matrix

8 Ansichten (letzte 30 Tage)
Yaniv
Yaniv am 10 Apr. 2016
Kommentiert: Yaniv am 10 Apr. 2016
I would like to find the 10 largest values in a 90x90 matrix, and their indices. Any suggestions? Thanks, Yaniv

Akzeptierte Antwort

Ced
Ced am 10 Apr. 2016
Bearbeitet: Ced am 10 Apr. 2016
A = randn(90);
Nmax = 10; % get Nmax biggest entries
[ Avec, Ind ] = sort(A(:),1,'descend');
max_values = Avec(1:Nmax);
[ ind_row, ind_col ] = ind2sub(size(A),Ind(1:Nmax)); % fetch indices
You can of course also use a while loop and pick out one value at a time.
  1 Kommentar
Yaniv
Yaniv am 10 Apr. 2016
Looks great, exactly what I needed. Thanks.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Sparse Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by