comparing double array to logical array

8 visualizaciones (últimos 30 días)
Engineer Undergoing
Engineer Undergoing el 9 de Ag. de 2021
Comentada: Engineer Undergoing el 9 de Ag. de 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?

Respuesta aceptada

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

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Matrix Indexing en Help Center y File Exchange.

Productos


Versión

R2016b

Community Treasure Hunt

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

Start Hunting!

Translated by