Problem 568. Number of 1s in a binary string
이전 댓글 표시
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
채택된 답변
추가 답변 (1개)
Harald
2023년 9월 8일
3 개 추천
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
Dyuman Joshi
2023년 9월 8일
+1 for using just logical indexing with sum/nnz over length
Image Analyst
2023년 9월 8일
Mayla
2023년 9월 8일
Harald
2023년 9월 8일
Hi,
you need to compare to '1' instead of 1.
Also, avoid using ans. Assign to a variable instead:
isOne = x=='1';
y=sum(isOne)
% or, in one line:
y=sum(x == '1')
Best wishes,
Harald
"and it didn't work."
Because you are comparing with a numerical value
x='1011010';
x==1
What you want to do is compare with a character
x=='1'
"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
2023년 9월 8일
@Image Analyst please check again
카테고리
도움말 센터 및 File Exchange에서 Characters and Strings에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!