Converting p * sizeof(double)
bytes to a vector of p double values
sizeof(double)
bytes to a vector of p double valuesThis function converts a byte vector to a vector of doubles
ByteVectorToDoubles(b)
b
: A vector of bytes (unsigned chars in C++)Corresponding vector of double
typed values for a given vector of bytes
a <- DoubleVectorToBytes(c(56.54, 89.7666, 98.565)) b <- ByteVectorToDoubles(a) print(b)
Mehmet Hakan Satman - mhsatman@istanbul.edu.tr
DoubleVectorToBytes
BytesToDouble
ByteVectorToDoubles
Useful links