필터 지우기
필터 지우기

Charecter to binary form

조회 수: 1 (최근 30일)
Vishnu M S
Vishnu M S 2013년 1월 30일
I have a character A. I converted this into a binary form(say B). I need to perform some operations using B. While doing this I need to check whether the element B(1)=1 or 0.
For doing so, I write
if B(1)==1
But it doesn't work. It works when I written like this-
if B(1)=='1'
What is the reason? Please tell me...
  댓글 수: 2
Jurgen
Jurgen 2013년 1월 30일
Apparently B is still a character array. Would help if you said how you converted it. Type whos B to see the type.
Jan
Jan 2013년 1월 30일
I do not understand, what the "binary form" of a character is. Please post the corresponding Matlab code to clear the details.

댓글을 달려면 로그인하십시오.

채택된 답변

Oleg Komarov
Oleg Komarov 2013년 1월 30일
You are comparing the char '1' with the numeric 1.
>> double('1')
ans =
49
as in the ASCII table.
You have to rescale '1' to 1:
'1'-'0' == 1
and in your case
B(1)-'0' == 1

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by