cancel
Showing results for 
Search instead for 
Did you mean: 

multiple array data to table display

lfoitek
Member

multiple array data to table display

Message contains an attachment
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
11111 array 1
00000 array 2
11111 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
2 REPLIES 2
Will.D
Active Participant

Re: multiple array data to table display

Message contains an attachment
I whipped this up real quick, so it's not perfect, but I think it'll get you what you're looking for.


Highlighted
lfoitek
Member

Re: multiple array data to table display

thank you very much