Output of the row of a vector which has the same entry as a second vector
Ältere Kommentare anzeigen
Hello,
Problem: Two vectors a and b. Id like to know in which row of the vector a, the entries of a and b are the same. Output vector r. if a entry in b occurs twice/triple/... the output of the row should also be twice/triple/...
I tried it like this:
a=[1 3 5 8 9 10 13 16]';
b=[2 5 1 1 8 8 8]';
r=find(ismember(a,b))
Solution: r =[1;3;4]
desired solution: r =[1;1;3;4;4;4]
Thanks in advance for your help!
1 Kommentar
Andrei Bobrov
am 1 Dez. 2012
Bearbeitet: Andrei Bobrov
am 1 Dez. 2012
[c,d] = ismember(sort(b),a)
r = d(c);
Akzeptierte Antwort
Weitere Antworten (1)
Azzi Abdelmalek
am 1 Dez. 2012
Bearbeitet: Azzi Abdelmalek
am 1 Dez. 2012
a=[1 3 5 8 9 10 13 16]';
b=[2 5 1 1 8 8 8]';
un=ones(numel(b),1)
out=cell2mat(arrayfun(@(x) un(b==a(x))*x,(1:numel(a))','un',0))
Kategorien
Mehr zu Matrix Indexing finden Sie in Hilfe-Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!