Indexing numbers for 2 or more specific values in a vector?

조회 수: 1 (최근 30일)
Nathan Garcia
Nathan Garcia 2019년 8월 7일
댓글: Nathan Garcia 2019년 8월 7일
How can I find the index numbers for 2 or more specific values in a vector called vec? Something like h=find(vec==26 & vec==437)

채택된 답변

Bruno Luong
Bruno Luong 2019년 8월 7일
h = find(vec==26 | vec==437)
or
h = find(ismember(vec,[27 437]))

추가 답변 (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