How can I represent double type number in binary form, for example:
dec = 3.14159
to an array consists of its IEEE 754 Double precision binary representation as binaryconvert.com does it
bin = 0100000000001001001000011111100111110000000110111000011001101110
in Matlab? I know there is a similar question, but not for Matlab.