How to find One's complement of floating point variable ?
6 ビュー (過去 30 日間)
古いコメントを表示
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
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?
採用された回答
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 件のコメント
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 Center および File Exchange で Computer Vision with Simulink についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!