How to used the combination between "bsxfun" and "operator AND"
8 views (last 30 days)
Show older comments
Dear Coder, May I know any working example to application of bsxfun and operator AND. For example, we want to compare an array if C == 0 AND C == FALSE.
0 Comments
Accepted Answer
Walter Roberson
on 2 Dec 2016
B = logical(randi([0 1], 15, 1));
C = randi([0 5], 1, 10, 'uint8');
bsxfun(@and, C == 0, ~B)
0 Comments
More Answers (1)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!