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

6 visualizzazioni (ultimi 30 giorni)
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.

Risposta accettata

Azzi Abdelmalek
Azzi Abdelmalek il 13 Dic 2014
Modificato: Azzi Abdelmalek il 13 Dic 2014
x=repmat(1:4,4,1) % Example
out=sum(x(:)==1)
%or
out=nnz(x==1)

Più risposte (0)

Categorie

Scopri di più su Data Types in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by