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
-
318 Solvers
-
Find the maximum number of decimal places in a set of numbers
3387 Solvers
-
Elapsed time is -0.005204 seconds.
104 Solvers
-
Possible Outcomes of American Roulette
120 Solvers
-
Determine the number of odd integers in a vector
828 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.