Unique numbers in array
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Joseph Pauwels
il 23 Apr 2014
Risposto: Image Analyst
il 24 Apr 2014
I was charged to try and write my own unique function , I was thinking of first sorting the array, and then writing a loop that went through each number from min(min) to max(max) but cant figure out once a repeated number is identified to skip it. Any thoughts?
0 Commenti
Risposta accettata
Image Analyst
il 24 Apr 2014
That could work, but why use a for loop when there are so much more "MATLAB-ish" ways of doing it, like:
m = randi(4, 1, 11)
sortedm = sort(m)
diffs = [1, diff(sortedm)]
uniqueNumbers = sortedm(find(diffs))
0 Commenti
Più risposte (1)
Azzi Abdelmalek
il 23 Apr 2014
Modificato: Azzi Abdelmalek
il 23 Apr 2014
out= unique(A)
Or
out=unique(A,'rows')
0 Commenti
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements 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!