comparing double array to logical array

11 views (last 30 days)
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?

Accepted Answer

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

Sign in to comment.

More Answers (0)

Products


Release

R2016b

Community Treasure Hunt

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

Start Hunting!