How to find binary value?
Mostrar comentarios más antiguos
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.
Respuestas (2)
Eike
el 23 de Feb. de 2011
0 votos
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
el 23 de Feb. de 2011
0 votos
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.
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!