how can i calculate how many number of times that 1 occurs.

1 次查看(过去 30 天)
I have an array like this
x =
1 2 3 4
1 2 3 4
1 2 3 4
1 2 3 4
how can i calculate how many number of times that 1 occurs.

采纳的回答

Azzi Abdelmalek
Azzi Abdelmalek 2014-12-13
编辑:Azzi Abdelmalek 2014-12-13
x=repmat(1:4,4,1) % Example
out=sum(x(:)==1)
%or
out=nnz(x==1)

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Multidimensional Arrays 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by