How do convert array x to array z?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hamidreza Rafat
il 28 Ago 2018
Modificato: Andrei Bobrov
il 28 Ago 2018
Hi, How do convert array x to array z ?
x = [4 4 8 8 8 5 5 4 8 8 4]
Z = [1 1 2 2 2 3 3 1 2 2 1]
4 -> 1
8 -> 2
5 -> 3
0 Commenti
Risposta accettata
Più risposte (1)
Andrei Bobrov
il 28 Ago 2018
Modificato: Andrei Bobrov
il 28 Ago 2018
or just:
[~,~,z] = unique(x,'stable');
or more
[~,z] = ismember(x,[4 8 5]);
0 Commenti
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!