Conditional Statements Between Two Arrays

2 views (last 30 days)
I am trying to compare each value between two large arrays then store true values as another array. What do I type?
  2 Comments
Nathaniel Wolff
Nathaniel Wolff on 11 Dec 2019
If (x>y) %I don't know how to list the true statement as a new variable End

Sign in to comment.

Accepted Answer

Ruger28
Ruger28 on 11 Dec 2019
a = 1:100;
b = 1:2:100;
c = ismember(a,b); % index of values of array a inside of array b
d = a(c); % the values inside of a that are in b

More Answers (0)

Categories

Find more on Matrices and Arrays in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!