Filter löschen
Filter löschen

How to find the common values in two arrays

813 Ansichten (letzte 30 Tage)
Jisha
Jisha am 28 Mai 2012
Kommentiert: Dyuman Joshi am 8 Mai 2024
Suppose I have two vectors
a= 1 2 3 4
b= 4 5 6 7 9
How do I find which value is common to both
in above case it is 4

Akzeptierte Antwort

Thomas
Thomas am 28 Mai 2012
You need the intersect command
doc intersect
in your case
[val,pos]=intersect(a,b) % gives common val and its position in 'a'

Weitere Antworten (0)

Kategorien

Mehr zu Data Types finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by