find the multiple max values

43 vues (au cours des 30 derniers jours)
chung yen chang
chung yen chang le 16 Juin 2020
Commenté : madhan ravi le 18 Juin 2020
I have a matrix
8 23 44 19
44 5 62 1
7 6 12 33
6 55 24 8
and I want to find 3 largest values(reserve duplicate matches),and then make the other be 0
just like
0 0 44 0
44 0 62 0
0 0 0 0
0 55 0 0
I have read some book ,but I still have no idea
help me plz
  3 commentaires
chung yen chang
chung yen chang le 18 Juin 2020
q=[6 7 3 2
5 3 6 4
7 7 5 3
7 9 10 5]
[x,y]=sort(q(:))
q(y(1:end-3))=0
in this case matrix can't preserve max three values
chung yen chang
chung yen chang le 18 Juin 2020
the answer would be
q =
0 0 0 0
0 0 0 0
0 7 0 0
0 9 10 0

Connectez-vous pour commenter.

Réponse acceptée

madhan ravi
madhan ravi le 16 Juin 2020
Modifié(e) : madhan ravi le 16 Juin 2020
MaX = maxk(matrix(:), 3);
Wanted = ismember(matrix, MaX) .* matrix
% for older versions
m = sort(matrix(:),'descend');
Wanted = ismember(matrix, m(1:3)) .* matrix
  11 commentaires
madhan ravi
madhan ravi le 18 Juin 2020
In the command window just call the function
Matrix = randi(10,4); % an example
Wanted = Mx(Matrix)
% function definition
function Wanted = Mx(matrix) % save it as a separate file called Mx.m
... the Code
end
Stephen23
Stephen23 le 18 Juin 2020
Note that this answer does not "find 3 largest values" as the question requested:
>> matrix = [4,4,4;4,4,4;3,2,1]
matrix =
4 4 4
4 4 4
3 2 1
>> m = sort(matrix(:),'descend');
>> Wanted = ismember(matrix, m(1:3)) .* matrix
Wanted =
4 4 4
4 4 4
0 0 0
The problem is caused by the use of sort. See my answer for the correct solution.

Connectez-vous pour commenter.

Plus de réponses (1)

Stephen23
Stephen23 le 16 Juin 2020
Where M is your matrix:
>> U = unique(M(:));
>> X = ismember(M,U(end-2:end));
>> M(~X) = 0
M =
0 0 44 0
44 0 62 0
0 0 0 0
0 55 0 0
  3 commentaires
Stephen23
Stephen23 le 18 Juin 2020
Modifié(e) : Stephen23 le 18 Juin 2020
"Thanks, bro this answer can work very well"
Note my answer actually gives the output that you asked for (unlike the answer that you accepted):
>> M = [4,4,4;4,4,4;3,2,1]
M =
4 4 4
4 4 4
3 2 1
>> U = unique(M(:));
>> X = ismember(M,U(end-2:end));
>> M(~X) = 0
M =
4 4 4
4 4 4
3 2 0
madhan ravi
madhan ravi le 18 Juin 2020
However maxk(...) gives the right answer xD, but i do agree the loophole.

Connectez-vous pour commenter.

Catégories

En savoir plus sur Descriptive Statistics dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by