replace duplicate value by 0 in matrix or vector
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How do we replace duplicate value by 0 in matrix or vector ?
for example
Input:
b = 1 2 1 3
Output::
b= 1 2 0 3
Thanks
0 Commenti
Risposta accettata
Andrei Bobrov
il 15 Ott 2019
Modificato: Andrei Bobrov
il 15 Ott 2019
b = [1 2 1 3];
[a,c] = unique(b,'first');
out = zeros(size(b));
out(c) = a;
Più risposte (2)
Jos (10584)
il 15 Ott 2019
% for small vectors:
b = [1 2 1 3 2 1 4 2]
b(sum(triu(b == b')) > 1) = 0
0 Commenti
Vedere anche
Categorie
Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!