Clear Filters
Clear Filters

How to used the combination between "bsxfun" and "operator AND"

1 view (last 30 days)
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.

Accepted Answer

Walter Roberson
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)

More Answers (1)

balandong
balandong on 2 Dec 2016
Thanks for the response,appreciate it

Categories

Find more on Execution Speed in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!