Re: If I have 160 bits in an array. How can I parse this out to...

2004-04-08 Thread Luca P.
Hello, You can use the Array Subset VI which you find in the Array subpalette. This VI returns a portion of an array starting at a specific index and containing a certain number of elements. Use this VI several times if you've to split your original Array into several portions. The Split 1D array

Re: If I have 160 bits in an array. How can I parse this out to...

2004-04-08 Thread shoneill
If you are talking about arrays of boolean values, please bear in mind that a boolean in LV occupies 8 bits. I remember reading that this was changed over previous versions (LV 4 to LV5?) for compatibility and simplification reasons. If you need to generate a 32-bit number from 32 booleans,

Re: If I have 160 bits in an array. How can I parse this out to...

2004-04-08 Thread Van626
Thanks Luca. I will try that. Van