call vector in matrix with condition?

조회 수: 1 (최근 30일)
ha ha
ha ha 2018년 3월 21일
댓글: ha ha 2018년 3월 21일
Let's say:
A=[1 2 3 10;4 5 6 15;7 8 9 20]
A=
1 2 3 10
4 5 6 15
7 8 9 20
B=[5 6 15;8 9 20]
B=
5 6 15
8 9 20
I want to call array C from A & B. How can?
C=[4;7]
  댓글 수: 2
Guillaume
Guillaume 2018년 3월 21일
What does call array C from A & B actually mean?
You need to explain why C is 2x1 and not some other size, and where the 4 and 7 are derived from A and B.
ha ha
ha ha 2018년 3월 21일
@Guillaume . I just want to call the value from first column in matrix A, If the matrix in column 2:4 in A is equal to matrix B, respectively

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

채택된 답변

ha ha
ha ha 2018년 3월 21일
A(ismember(A(:,2:4),B,'rows'),1);
  댓글 수: 1
M
M 2018년 3월 21일
How does this correspond to A & B ?

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

추가 답변 (0개)

카테고리

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by