Clean way to find which elements of categorical array are part of a set of labels

조회 수: 2 (최근 30일)
Hi. I have a categorical array. I want to find which elements belong to a set of labels. Here is an example of what I would like to write, but I obviously need some form of function here.
data = nominal( {'a', 'b', 'c', 'b', 'a'} )'
%This line will in fact not work, so I am looking for a clean way to write it.
isAorB = any(data == {'a', 'b'});
disp( isAorB );
1
1
0
1
1

채택된 답변

David Sanchez
David Sanchez 2016년 2월 8일
I think you are looking for this:
data = {'a', 'b', 'c', 'b', 'a'} ;
members = {'a','b'};
ismember(data,members)
ans =
1 1 0 1 1

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Categorical Arrays에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by