List of utility methods to do Float Array to Byte Array
byte[] | floatArrayToBytes(float[] d) float Array To Bytes byte[] r = new byte[d.length * 4]; for (int i = 0; i < d.length; i++) { byte[] s = floatToBytes(d[i]); for (int j = 0; j < 4; j++) r[4 * i + j] = s[j]; return r; |
byte[] | floats2bytesBE(float[] val) floatsbytes BE if (val == null) return null; byte[] b = new byte[val.length << 2]; for (int i = 0; i < val.length; i++) float2bytesBE(val[i], b, i << 2); return b; |