10-14-2014 12:40 PM
So I am designing a Data Acquistion tool in Labview for multiple devices. So I got 1D array which stores all the multiple devices Physical Channels in a column. Now what I want to accomplish is that for one "for loop" I just want to send out all the physical channels of one device and then for the second device> Second loop> the next device channels. How can I achieve this functionality?
10-14-2014 01:22 PM
Hi Ashaironix,
I would use a better data representation for your channel data: array of cluster of array of channel data.
This way you could store your channels separated by device helping you to easily index channels of just one device.
With your approach you need to search and select the channels of one device before you can use them in your loop…