Extract elements of a list using their indices

3 Ansichten (letzte 30 Tage)
Izem
Izem am 27 Aug. 2020
Kommentiert: Star Strider am 27 Aug. 2020
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.

Akzeptierte Antwort

Star Strider
Star Strider am 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 Kommentare
Izem
Izem am 27 Aug. 2020
Okay thank you !
Star Strider
Star Strider am 27 Aug. 2020
My pleasure!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by