Effacer les filtres
Effacer les filtres

comparing double array to logical array

8 vues (au cours des 30 derniers jours)
Engineer Undergoing
Engineer Undergoing le 9 Août 2021
Hello
I am trying to compare two arrays and the save the results in a new one (third), the first array is 1000x1 double array and the second array is 1000x1 logical array. I'd like to compare them to each other, meaning for every true value (1) in the logical array I'd get the corresponding value of the double array (first array) saved in the new array (third array).
How can I do that? I tried looking up for that on the " Relational Operations" but I could'nt find something relevant, Should I do an if condition statement and how?

Réponse acceptée

Walter Roberson
Walter Roberson le 9 Août 2021
result = DoubleArray(LogicalArray);
Logical indexing.
  1 commentaire
Engineer Undergoing
Engineer Undergoing le 9 Août 2021
worked like a charm, I didn't expect it to be this simple
Thanks

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Matrix Indexing dans Help Center et File Exchange

Produits


Version

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by