I have data of UInt8
type and i want to convert it into Float64
.
typeof(data) = Vector{UInt8}
My data looks like
data = read(f, N_points * 9) = UInt8[0xdf, 0xfd, 0x5a, 0x80, 0x1c, 0x68, 0x86, 0x3f, 0xb6, 0x1a, 0x0f, 0x3a, 0x2f, 0x4e, 0x85, 0x3f, 0x3c, 0x0c, 0x29, 0xb2, 0x83, 0xe3, 0x85, 0x3f, 0xd2, 0x8d, 0xb5, 0x62, 0xc7, 0x61, 0x88, 0x3f, 0x1c, 0x00, 0x24, 0x53, 0xd3, 0x26, 0x90, 0x3f, 0x94, 0x92, 0x25, 0x6a, 0x2e, 0x50, 0x8c, 0x3f, 0x1c, 0x90, 0xd6,
I am getting error as shown below