Problem 568. Number of 1s in a binary string

6 visualizaciones (últimos 30 días)
Mayla
Mayla el 8 de Sept. de 2023
Comentada: Les Beckham el 8 de Sept. de 2023
Thats the question:
Find the number of 1s in the given binary string. Example. If the input string is '1100101', the output is 4. If the input string is '0000', the output is 0
I wrote this code, but I don't understand, what is wrong with it.
function y = one(x)
y = length(find(x))
end

Respuesta aceptada

Les Beckham
Les Beckham el 8 de Sept. de 2023
The find() function returns the index of all non-zero elements in the input. ASCII characters (like '0' and '1') are all non-zero (numerically) so your function will just return the length of the input string.
Example:
find('1011010')
ans = 1×7
1 2 3 4 5 6 7
length(find('1011010'))
ans = 7
There are a lot of ways to solve this problem. Look at this documentation page for one way: find characters
  3 comentarios
Mayla
Mayla el 8 de Sept. de 2023
I have already done Onramp. Maybe I should repeat it again :) Do you have any tipps for other free online tutorials?
Les Beckham
Les Beckham el 8 de Sept. de 2023
Mathworks has several other tutorials in addition to the Onramp.
Check this page that lists some more: Self-Paced Online Courses

Iniciar sesión para comentar.

Más respuestas (1)

Harald
Harald el 8 de Sept. de 2023
Hi,
find is intended for numerical non-0 elements rather than non-'0'. Instead, I would use == to compare to '0', and I would also use sum or nnz rather than length.
Best wishes,
Harald
  6 comentarios
Dyuman Joshi
Dyuman Joshi el 8 de Sept. de 2023
"and it didn't work."
Because you are comparing with a numerical value
x='1011010';
x==1
ans = 1×7 logical array
0 0 0 0 0 0 0
What you want to do is compare with a character
x=='1'
ans = 1×7 logical array
1 0 1 1 0 1 0
"And why can't I only use sum(x)?"
Because that will give the sum of the values of x, which is not what the questions asks for.
What you want is, the total number of values i.e. sum where x isequal to '1'. So that's what is done.
Dyuman Joshi
Dyuman Joshi el 8 de Sept. de 2023
@Image Analyst please check again

Iniciar sesión para comentar.

Categorías

Más información sobre Characters and Strings 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!

Translated by