IEEE 754 32 bit floating point single precision
35 次查看(过去 30 天)
显示 更早的评论
I have a matrix with decimal values.
say:
a=[43 75 23;85 34 78;13 78 23]
i want to convert all the values to 32-bit single precision floating point value IEEE 754 format. Can anybody help me...
or just take a=240;
i want to get "01000011011100000000000000000000"
2 个评论
Walter Roberson
2013-9-7
Not enough bits there. 32 bits is 4 bytes, but you have given a 3 x 3 matrix.
回答(2 个)
Walter Roberson
2013-9-7
编辑:Walter Roberson
2013-9-7
t = uint8(a .');
typecast( t(:), 'single')
and then reshape the result as appropriate.
Be sure to check the byte order against the other possibilities.
2 个评论
Jan
2013-9-8
This shows the bit pattern of 240 represented as single precision float:
dec2bin(typecast(single(240), 'uint8'))
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!