How can i find an eleiment which comes only one in a matrix ?????
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
raj singh
il 22 Giu 2016
Risposto: Jos (10584)
il 24 Giu 2016
Example
A=[1 2;1 3;1 4;1 5;2 4]
Ans should be [3 5]
0 Commenti
Risposta accettata
Azzi Abdelmalek
il 22 Giu 2016
Modificato: Azzi Abdelmalek
il 22 Giu 2016
A=[1 2;1 3;1 4;1 5;2 4]
[ii,jj,kk]=unique(A)
b=accumarray(kk,(1:numel(kk))',[],@numel)
out=ii(b==1)
Più risposte (1)
Jos (10584)
il 24 Giu 2016
When A only contains positive integers:
A = [1 2 3 1 2 4 1 2 4 5]
B = find(sparse(A(:),1,1)==1)
0 Commenti
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB 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!