Quickly access two arrays

조회 수: 1 (최근 30일)
Vincent
Vincent 2012년 4월 19일
Hi there,
I got a simple question but I just don't get the solution - so sorry for annoyance!
I have two arrays:
A = [ 2 2 1 3 2 1];
B = [1 3];
I want now a logical array for all numbers with A == 2, but only element number B should be true.
C = [ 1 0 0 0 1 0];
As you can see, the first and third "2" of A is now "true", everything else is false. Is there a simple. loop-avoiding-solution? Thanks!

채택된 답변

Andrei Bobrov
Andrei Bobrov 2012년 4월 19일
A = [ 2 2 1 3 2 1];
B = [1 3];
idx = find(A==2);
C(numel(A)) = false;
C(idx(B)) = true;
  댓글 수: 1
Vincent
Vincent 2012년 4월 19일
thank you, worked like a charm :)

댓글을 달려면 로그인하십시오.

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