10-17-2014 03:21 AM
Hello..
Is it possible to concationate binary bits to have a complete 1 byte binary number.
Example;
1. I have thease 8 bits --> 0,0,0,0,1,1,1,1 --> then binary should be 00001111
1. I have 4 groups of 2 bits --> 00,00,11,11 --> then binary should be 00001111
Is it possible??
Please help..
Solved! Go to Solution.
10-17-2014 03:23 AM
10-17-2014 03:24 AM - edited 10-17-2014 03:26 AM
Hi Nayan,
You should have linked to your other thread…
to convert an array of booleans into an integer number you should use "boolean array to number" function. Easy as it is!
All you need to do is to build your boolean array. There are functions like BuildArray…
10-17-2014 03:36 AM
Thank you PiDi and GerdW..