match row column of matrix

1 次查看(过去 30 天)
If I have one matrix
1 23
2 54
3 76
4 67
5 23
The other matrix
4
3
If there is way to get
If Iwant a matrix
4 67
3 76

采纳的回答

Guillaume
Guillaume 2020-2-5
编辑:Guillaume 2020-2-5
A = [1 23
2 54
3 76
4 67
5 23];
B = [4;3];
result = A(ismember(A(:, 1), B), :) %keep the rows of A whose 1st column is a member of B

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by