Need to determine the fraction of a matrix of ones and zeroes that are zeroes
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
DJ V
el 13 de Nov. de 2016
Respondida: Steven Lord
el 14 de Nov. de 2016
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.
0 comentarios
Respuesta aceptada
Walter Roberson
el 13 de Nov. de 2016
mean(Y(:)) * 100
1 comentario
Jan
el 13 de Nov. de 2016
Because the zeros should be counted:
(1 - mean(Y(:))) * 100
Más respuestas (1)
Steven Lord
el 14 de Nov. de 2016
Get the number of nonzeros using nnz and the total number of elements using numel.
0 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!