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

回答(1 个)

Azzi Abdelmalek
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(:))

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by