How to save a value from an array if a condition is true

23 vues (au cours des 30 derniers jours)
Tejashree Pawar
Tejashree Pawar le 21 Oct 2021
Commenté : Geoff Hayes le 25 Oct 2021
I have two cell arrays "X" and "Y". I need to check if a value in X==1, then save the corresponding Y value. How to do that in a for loop (I have many runs of X and Y)

Réponses (1)

Geoff Hayes
Geoff Hayes le 21 Oct 2021
@Tejashree Pawar - do you need to use a loop? For example, if your X and Y arrays are the same dimensions, then (for example) if
X = [1 2 3 1 4 5 1 6 7];
Y = [7 2 2 8 2 2 9 2 2];
Z = Y(X==1)
then Z is
Z =
7 8 9
since X==1 returns a logical array of ones and zeros where a one corresponds to the match (to 1) in X. We can then use this logical array to extract those values from Y which match the logical 1.
  2 commentaires
Tejashree Pawar
Tejashree Pawar le 21 Oct 2021
Hi @Geoff Hayes thanks for the answer! Yes, i need to use it in a for loop because i have multiple X and Y files (CANape test data). X&Y are of same dimension for a given run.
How would i make it work if X and Y were cell arrays?
Geoff Hayes
Geoff Hayes le 25 Oct 2021
@Tejashree Pawar - couldn't you just use a single for loop to iterate over each element of X and then compare to 1? If true, then extract the equivalent element from Y and insert into an array. Is the problem keeping track of the data from each run?

Connectez-vous pour commenter.

Catégories

En savoir plus sur Loops and Conditional Statements dans Help Center et File Exchange

Produits


Version

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by