how to find matching elements of two colums vectors
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
M
am 12 Jun. 2019
Bearbeitet: M
am 12 Jun. 2019
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.
Siehe auch
Kategorien
Mehr zu Matrix Indexing finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!