Extract elements of a list using their indices

8 views (last 30 days)
I have a list B which contains the indices of a classified elements and a bigger list A and I want to extract the elements of A using the indices in the list A.
Is there a simple way to do it ?
NB :
I used this line to get theses indices :
[sharedvals,idx] = intersect(A,B,'stable');
Thank you in advance for your answers.

Accepted Answer

Star Strider
Star Strider on 27 Aug 2020
The ‘sharedvals’ result should be what you want, however it returns the identified values without repitition. If you want all of them (asuming there are more than one of some of them), the ismember function might be more appropriate.
Note that more information would be helpful, including the reason you asked this, considering that intersect appears to do what you want.
  4 Comments

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!