I am trying to compare each value between two large arrays then store true values as another array. What do I type?

2 Kommentare

Ruger28
Ruger28 am 11 Dez. 2019
What have you tried?
Nathaniel Wolff
Nathaniel Wolff am 11 Dez. 2019
If (x>y) %I don't know how to list the true statement as a new variable End

Melden Sie sich an, um zu kommentieren.

 Akzeptierte Antwort

Ruger28
Ruger28 am 11 Dez. 2019

0 Stimmen

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

Weitere Antworten (0)

Kategorien

Mehr zu Data Types finden Sie in Hilfe-Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by