How to find binary value?
1 次查看(过去 30 天)
显示 更早的评论
Hello I want to calculate following in matlab. Please help in the code or command.
1. I want to represent 25.34 decimal to binary. 2. Do the reverse operation for the above answer.
3. I want to represent -3.4 decimal to binary (in 2's complement form) 4. Do the reverse operation for the above answer.
0 个评论
回答(2 个)
Eike
2011-2-23
Since the matlab integrated function dec2bin seems to be unable to handle numbers with decimal places, I'd suggest to write a little conversion algorithm. That one isn't too complex, you could start at wikipedia for example:
0 个评论
Walter Roberson
2011-2-23
Hint: num2hex, a look-up table, and logical indexing.
There are numerous ways to represent floating point numbers in binary. The above hint has to do with the IEEE 754 standard representation. There are other representations, however. I have posted the code for some of them in the past, but as this question is obviously homework, you will at least have to use your search engine skills to find my code.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Conversion 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!