Need to determine the fraction of a matrix of ones and zeroes that are zeroes

11 visualizzazioni (ultimi 30 giorni)
I need to determine the fraction of a matrix of ones and zeroes that are zeroes.
My code is:
function y = zero_stat(Y)
K=mean(Y');
[x,y] = size(Y');
r = mean(Y',y);
s = sum(r);
y=(1-s)/y)*100;
end
IF 40% of the matrix is comprised of zeroes, the function is to return 40.

Risposta accettata

Walter Roberson
Walter Roberson il 13 Nov 2016
mean(Y(:)) * 100

Più risposte (1)

Steven Lord
Steven Lord il 14 Nov 2016
Get the number of nonzeros using nnz and the total number of elements using numel.

Categorie

Scopri di più su Numeric 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