Negitive number from a hex value

조회 수: 37 (최근 30일)
Duke
Duke 2014년 1월 29일
답변: Walter Roberson 2014년 2월 4일
If I go into the windows calculator and type in -69 in decimal and I convert that to hex I get FFFFFFBB. If I go into MatLab and I type int32(hex2dec('FFFFFFBB')) I get 2147483647. Is there any way that I can take a hex value and get the negative representation of the value, so I’d like FFFFFFBB in MatLab to give me -69. Thanks!
  댓글 수: 1
Duke
Duke 2014년 2월 4일
Anyone know anything about this, or understand what I'm asking?

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

채택된 답변

Walter Roberson
Walter Roberson 2014년 2월 4일
typecast(uint32(hex2dec('FFFFFFBB')),'int32')

추가 답변 (1개)

Thomas
Thomas 2014년 2월 4일
편집: Thomas 2014년 2월 4일
2147483647 is Maximum integer value in matlab
you can get that by typing
intmax
so the answer you are getting is not value out of hex2dec but the intmax.
You can use Two's complement to represent negative numbers.

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by