Logical Vectors and &
Show older comments
I have two logical vectors:
A = [0 1 1 1 1 0 0] B = [0 0 0 0 0 0 0]
C = A & B % C = [0 0 0 0 0 0 0]
Can someone explain to me why C = [0 0 0 0 0 0 0].
Accepted Answer
More Answers (0)
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!