find same elements between two sequences

a=[2 5 4 6 6 7 9 8 4 5 61 2 56 41]
b=[1 9 7 3 2 4 5 1 6 4 78 1 12 56 14 27 46 1 3 2 4]
how to find same elements in between two sequences. in above 2,4,5,6,7,9,56 are same elements.

Answers (1)

a=[2 5 4 6 6 7 9 8 4 5 61 2 56 41]
b=[1 9 7 3 2 4 5 1 6 4 78 1 12 56 14 27 46 1 3 2 4]
c=intersect(a,b)

Categories

Find more on Signal Processing Toolbox in Help Center and File Exchange

Asked:

on 30 Dec 2016

Answered:

on 30 Dec 2016

Community Treasure Hunt

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

Start Hunting!