Can someone tell me how to convert a 32-bit binary string to an IEEE 754 floating point value in Ruby?
For example, the binary string "01000001100101110011001100110011" (0x41973333) should convert to 18.9, but I can't figure out how to do this using Ruby.
I'm trying to get the same values returned by: https://www.h-schmidt.net/FloatConverter/IEEE754.html
Thanks.