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
The output is the IEEE 754 binary representation for a single.
Solution Comments
Show commentsProblem Recent Solvers36
Suggested Problems
-
Find the sum of all the numbers of the input vector
53490 Solvers
-
Given an unsigned integer x, find the largest y by rearranging the bits in x
1985 Solvers
-
Project Euler: Problem 8, Find largest product in a large string of numbers
1301 Solvers
-
Check if number exists in vector
13731 Solvers
-
Generate a vector like 1,2,2,3,3,3,4,4,4,4
13523 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!