Problem 832. Convert single-precision floating-point number to binary representation
Write a function which takes a scalar single-precision floating-point number as input and returns its binary representation as a string of zeros and ones.
Example 1
x = single( 1.25 );
y = '00111111101000000000000000000000'
Example 2
x = realmax('single'); % = 3.4028235e+038
y = '01111111011111111111111111111111'
Solution Stats
Problem Comments
-
1 Comment
Richard Zapor
on 14 Jul 2012
The output is the IEEE 754 binary representation for a single.
Solution Comments
Show commentsProblem Recent Solvers34
Suggested Problems
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15600 Solvers
-
300 Solvers
-
Create matrix of replicated elements
383 Solvers
-
Fix the last element of a cell array
1541 Solvers
-
5241 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!