Extracting column no. from an array based on values in another array

Hi,
I have an array: Array1
and another array(sub set of above one): Array2
I want to know the position of elemnts of Array2 in Array1.
For Ex:
Input:
Array1 - [A,B,C,D,E,F]
Array2 - [B,D]
Output:
2,4

 채택된 답변

Andrei Bobrov
Andrei Bobrov 2017년 11월 21일
편집: Andrei Bobrov 2017년 11월 21일
Use ismember
Array1 = {'A','B','C','D','E','F'}
Array2 = {'B','D'}
[~,ii] = ismember(Array2,Array1)

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Structures에 대해 자세히 알아보기

질문:

2017년 11월 21일

댓글:

2017년 11월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by