to start there is one 15 bit array that is separated into three 5 bit arrays. there are 5 boolean buttons that if selected, it will give the value of the three 5 bit arrays for that index.
example
if 15 bit array is equal to:
111110000011111
then 5 bit array equals:
11111 array 1
00000 array 2
11111 array 3
if boolean index 0 and 2 are selected the the bits selected are bolded
11
111 array 1
00
000 array 2
11
111 array 3
the output is a 1 d array looking like this:
110011
the for loop took three iterations to do this operation and my question is that is there a way to put this data into a table that has the loop iteration in one column and the values for that interation in the next column. looking like this
sample | value
0 | 11
1 | 00
2 | 11
Attached is the vi that gets to the output array