Please, I will like to Know how to read and store a variable of 128 bits and the split it in 16 variables of 8 bits each, and then create a matrix of 4x4 using each block of 8 bits, for instance:
input = 32 43 F6 A8 88 5A 30 8D 31 31 98 A2 E0 37 07 34;
the I need to create a matrix like this:
input_M = { {32 88 31 E0}, {43 5A 31 37}, {F6 30 98 07}, {A8 8D A2 34}} ;
Thank you very much,
input = 32 43 F6 A8 88 5A 30 8D 31 31 98 A2 E0 37 07 34;
the I need to create a matrix like this:
input_M = { {32 88 31 E0}, {43 5A 31 37}, {F6 30 98 07}, {A8 8D A2 34}} ;
Thank you very much,
Comment