필터 지우기
필터 지우기

Vector from character array

조회 수: 1 (최근 30일)
MarshallSc
MarshallSc 2021년 8월 2일
편집: DGM 2021년 8월 2일
If I have a character array for example:
A={'high','low','low'}
I want to introduce a vector for example B in which if the it says 'high' in A I would have 1 and 0 for the ones that are 'low', something like:
B=[1,0,0]
How can I do that? Thanks in advance.

채택된 답변

DGM
DGM 2021년 8월 2일
편집: DGM 2021년 8월 2일
Something like this
A = {'high','low','low'};
B = strcmp(A,'high')
B = 1×3 logical array
1 0 0
Bear in mind that this only tests whether elements of A contain 'high'. It's implied that the only possible contents are 'high' and 'low', so that should be sufficient. If it's not, then we need to ask how other inputs should be represented.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Matrix Indexing에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by