how to find matching elements of two colums vectors
조회 수: 5 (최근 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!