HEEEEELP....... Array cells comparing....

Hello friends. i want to compare elements in two two arrays, one is big the other is smaller so i need to check if an individual element (say elements one of the smaller array) is available in the bigger one. Any one who can help me perform that job i would really appreciate.

6 Comments

Luna
Luna on 27 Mar 2019
Edited: Luna on 28 Mar 2019
Moved this comment to answers.
@Luna: If this is posted in the section for answers, I will vote for it.
arr1=[2 1 4 1 5 9 2 6 5 3 5 8 9 7 9 ]
arr2=[2 ]
arr2 contains just one element '2'. we need to check if arr1 contains any number in arr2 and if yes we take it and save it in an other variable. that is precisely what i want.
As Luna suggested, use ismember().
thanks
@Jan waiting for your +1 :)

Sign in to comment.

 Accepted Answer

Luna
Luna on 28 Mar 2019
Hi,
Look at the function ismember to search if your element exists in another array.
Please share your arrays as an example and what have you done so far, and what kind of output you want to get. So that we can help.

More Answers (0)

Asked:

on 27 Mar 2019

Commented:

on 29 Mar 2019

Community Treasure Hunt

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

Start Hunting!