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
Solution Comments
Show comments
Loading...
Problem Recent Solvers36
Suggested Problems
-
Make the vector [1 2 3 4 5 6 7 8 9 10]
52869 Solvers
-
Select every other element of a vector
36306 Solvers
-
Remove any row in which a NaN appears
8771 Solvers
-
middleAsColumn: Return all but first and last element as a column vector
647 Solvers
-
Replace multiples of 5 with NaN
468 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
The output is the IEEE 754 binary representation for a single.