Convert single-precision floating-point number to binary representation - MATLAB Cody - MATLAB Central

Problem 832. Convert single-precision floating-point number to binary representation

Difficulty:Rate

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

45.71% Correct | 54.29% Incorrect
Last Solution submitted on Apr 09, 2025

Problem Comments

Solution Comments

Show comments
PIVlab surpasses 100K all-time File Exchange downloads
During the past twelve months, PIVlab, a MATLAB Community Toolbox for particle...
4
8

Problem Recent Solvers34

Suggested Problems

Problem Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!