How to simplify the for loops and if statement in this code
2 views (last 30 days)
Show older comments
How to simplify for loops and if statements.
1 Comment
dpb
on 23 Jun 2020
Please restore the original post -- there's no context for others going forward now.
Accepted Answer
dpb
on 19 Jun 2020
Straightahead w/o trying to save some recomputations that could be done by complements--
k=[sum(A==B & A==0,'all') sum(A==B & A~=0,'all');sum(A~=B & A==0,'all') sum(A==B & A==1,'all')];
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!