Check if there are repeated elements in a vector
57 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Hi to all, is there a command to check if there are repeated elements in a vector; I just have to check in an "if"...
thanks a lot
Max
0 Commenti
Risposta accettata
Image Analyst
il 4 Dic 2012
if length(v) == length(unique(v))
% There are no repeats.
.......
6 Commenti
Yasir Iqbal
il 25 Nov 2021
You can simply craete a copy of the vector with the required amount of values. There can be other ways around also. Just a suggestion.
Image Analyst
il 25 Nov 2021
@Larissa Monjaraz I don't understand because you forgot to provide your example with actual numbers. So about all I can say is to try ismember().
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Logical in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!