How to check number of zeros in an array?

118 vues (au cours des 30 derniers jours)
Aswin Sandirakumaran
Aswin Sandirakumaran le 6 Juil 2018
Eg: I have a vector A = [0,0,4,3] and B = [0,1,2,3,4] and C = [0,0,0,0,0] and D = [0,1,2,0,0]
SO THE OUTPUT SHOULD CONTAIN NUMBER OF ZEROS IN EACH VECTOR:
A = 2
B = 1
C = 5
D = 3

Réponse acceptée

Paolo
Paolo le 6 Juil 2018
Modifié(e) : Paolo le 6 Juil 2018
A = nnz(~A)
B = nnz(~B)
C = nnz(~C)
D = nnz(~D)
  1 commentaire
Stephen23
Stephen23 le 6 Juil 2018
I doubt that it gets much more compact than that!

Connectez-vous pour commenter.

Plus de réponses (1)

Raul Andres Lopez Romero
Raul Andres Lopez Romero le 6 Juil 2018
Try this:
nzeros=numel(A)-nnz(A)
numel(X) give you the number of elements in an array, nnz(X) give you the numbers of Non zero elements in an array.
try it for every array you have.

Catégories

En savoir plus sur Matrices and Arrays dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by