Can this be vectorized?

4 views (last 30 days)
Patrick Mboma
Patrick Mboma on 30 Oct 2014
Commented: Patrick Mboma on 30 Oct 2014
Dear all,
I have two vectors A and B of respective sizes na and nb, with na>=nb. All elements in B are unique while the elements in A are not. But all elements in A are in B. I would like to create a mapping between A and B and one way to do that is as follows:
A=nan(na,1);
for ii=1:nb
A(A==B(ii))=ii;
end
This works well be becomes prohibitively expensive for large na. And so my question is whether there is a way of getting rid of the for loop and/or creating this mapping differently.
Thanks,
P.
  1 Comment
Andrei Bobrov
Andrei Bobrov on 30 Oct 2014
can so:
out = nan(na,1);
for ii=1:nb
out(A==B(ii))=ii;
end

Sign in to comment.

Accepted Answer

Andrei Bobrov
Andrei Bobrov on 30 Oct 2014
Edited: Andrei Bobrov on 30 Oct 2014
[lc,ii] = ismember(A,B);
A(lc) = ii(lc);
or with nan
out = ii;
out(~lc) = nan;
or jast (with zeros)
out = ii;
  1 Comment
Patrick Mboma
Patrick Mboma on 30 Oct 2014
Thanks Andrei,
I ended up implementing it as
[~,out] = ismember(A,B);
where out is exactly what I am looking for (given that all the elements in A are in B).

Sign in to comment.

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices in Help Center and File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!