필터 지우기
필터 지우기

How to find One's complement of floating point variable ?

조회 수: 3 (최근 30일)
kintali narendra
kintali narendra 2021년 2월 5일
댓글: Walter Roberson 2021년 2월 8일
Hi,
I used Simulink Bitwise Not operator to find the one's complement of uint8 type variable.
Now I want to find one's complement of float variable (double) using simulink.
Can you please help me on how to perform the task.
Thank you
  댓글 수: 2
James Tursa
James Tursa 2021년 2월 5일
What does a 1's complement of a floating point bit pattern even mean to you? How do you intend to use this result?
kintali narendra
kintali narendra 2021년 2월 5일
편집: kintali narendra 2021년 2월 5일
I need to convert float variable to binary number and then find one's complement of that, covert it into float variable again.
I am using it for redundancy validation.

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

채택된 답변

Walter Roberson
Walter Roberson 2021년 2월 5일
typecast to uint64, take the one's complement, typecast back.
Caution: 1's complement of 0.0 is NaN.
  댓글 수: 9
kintali narendra
kintali narendra 2021년 2월 8일
yes, I want decimal representation of the one's complement.
The function which Walter recommened worked.
Walter Roberson
Walter Roberson 2021년 2월 8일
@Paul note in particular they wanted the one's complement of the binary representation of double precision numbers, not of an integer data type.

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Sources에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by