how to find matching elements of two colums vectors
8 次查看(过去 30 天)
显示 更早的评论
if i have a two column vectors generated from a figure like from apple. how can i combine them the matching elements using matlab. plz guide me
0 个评论
回答(1 个)
M
2019-6-12
编辑:M
2019-6-12
It depends what you want exactly.
Let's say you have two vectors a and b:
a=[1;2;3;4];
b=[0;2;3;5];
To find the indices where a equals to b, you can simply compute:
a == b
ans =
4×1 logical array
0
1
1
0
To get the values and the indices where a equals to b, you can also have a look at the find function.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Matrix Indexing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!