Selecting numbers in matrix that are repeated

2 vues (au cours des 30 derniers jours)
Cside
Cside le 1 Déc 2019
Commenté : Star Strider le 1 Déc 2019
I have a 60x5 matrix A and would like to find the answer vector that lists all the numbers in A that appeared at least 2 times/remove those numbers that only appeared once. How may I write for this?
(A contains some NaNs too)
Thank you! :)

Réponse acceptée

Star Strider
Star Strider le 1 Déc 2019
Try this:
A = randi(1000, 60, 5); % Create Matrix
[Au,~,ix] = unique(A,'stable'); % Unique elements in ‘A’
tally = accumarray(ix,1); % Number Of Occurrences Of Each
keep = tally > 1; % Keep Indices Of Occurrences > 1
out1 = [Au(keep), tally(keep)]; % Display Numbers & Occurrences
Ai = ismember(A,out1(:,1)); % Return Logical Index Of Occurrences > 1
Anew = A .* Ai; % Matrix With ‘Single-Occurrence’ Elements Eliminated
The ‘Anew’ matrix has 0 values for the elements that are not repeated, those that are repeated appear in their expected locations.
If you only want the values of the numbers that aare repeated, and the number of repeats, those are contained in the ‘out1’ matrix.
  2 commentaires
Cside
Cside le 1 Déc 2019
thank you! :) appreciate it
Star Strider
Star Strider le 1 Déc 2019
As always, my pleasure!

Connectez-vous pour commenter.

Plus de réponses (1)

KALYAN ACHARJYA
KALYAN ACHARJYA le 1 Déc 2019
[N,edges]=histcounts(A,unique(A))
result_array=edges(N>1)
  1 commentaire
Cside
Cside le 1 Déc 2019
there seems to be an error using histcounts (needs to be monotonically increasingly) - had a similar code with you too :) thank you nonetheless kalyan!

Connectez-vous pour commenter.

Catégories

En savoir plus sur Creating and Concatenating Matrices 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