How to find binary value?

3 vues (au cours des 30 derniers jours)
Raviteja
Raviteja le 23 Fév 2011
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.

Réponses (2)

Eike
Eike le 23 Fév 2011
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:

Walter Roberson
Walter Roberson le 23 Fév 2011
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.

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by