Beispiel #1
0
 public static byte[][] FloatToByteValueArrays(float[] data, uint wordSize, bool frontPadding = true)
 => data.Select(e => RegisterFunctions.PadBytesToWordSize(
                    wordSize, BitConverter.GetBytes(e), frontPadding)).ToArray();