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 Solvers37
Suggested Problems
-
Project Euler: Problem 5, Smallest multiple
1671 Solvers
-
Sum of first n terms of a harmonic progression
517 Solvers
-
Given a window, how many subsets of a vector sum positive
873 Solvers
-
Create logical matrix with a specific row and column sums
349 Solvers
-
Accessing elements on the diagonal
106 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.