call vector in matrix with condition?

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 Comments

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.
@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

Sign in to comment.

 Accepted Answer

ha ha
ha ha on 21 Mar 2018
A(ismember(A(:,2:4),B,'rows'),1);

More Answers (0)

Categories

Find more on Operators and Elementary Operations in Help Center and File Exchange

Tags

Asked:

on 21 Mar 2018

Commented:

on 21 Mar 2018

Community Treasure Hunt

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

Start Hunting!