Extract elements of a list using their indices

3 次查看(过去 30 天)
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.

采纳的回答

Star Strider
Star Strider 2020-8-27
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 个评论

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by