how to calculate no of 1 present in binary matrix in matalb
1 次查看(过去 30 天)
显示 更早的评论
how to calculate no of 1 present in binary matrix in matalb
0 个评论
回答(1 个)
Azzi Abdelmalek
2014-3-15
编辑:Azzi Abdelmalek
2014-3-15
not(A)
% Example
A=[1 0; 0 0]
B=not(A)
B=
[0 1
1 1]
% or maybe you mean number by no
out=sum(A(:))
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!