How to check if there are more ones than zeros in the variable.
6 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Luccas S.
el 22 de Jul. de 2022
Respondida: Image Analyst
el 22 de Jul. de 2022
For example, if there is the variable x;
x = [1 1 1 1 1 1 1 1 0 0 0];
How to check if it has ones than zeros?
1 comentario
Mohammad Sami
el 22 de Jul. de 2022
if the verctor only contains 1s and 0s, you can just do a sum divided by length of the vector
Respuesta aceptada
Walter Roberson
el 22 de Jul. de 2022
x = [1 1 1 1 1 1 1 1 0 0 0]
has_more_ones = mean(x) > 0.5 %note that exactly equal does not qualify as "more"
0 comentarios
Más respuestas (1)
Image Analyst
el 22 de Jul. de 2022
Another way (assuming only 1s and 0s in the array):
moreOnes = nnz(x) > numel(x)/2
0 comentarios
Ver también
Categorías
Más información sobre Elementary Math 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!