06-27-2006 02:56 PM
Hi Johnny,
I think that the problem lies with the way you are converting the output of the DAQ Assistant. Your analog input operation is set up to be continuous, reads from multiple channels, and returns 10 datapoints from each channel each time the while loop iterates. Currently, you are converting this output to a 1D array. You need to convert it to a 2D array, so that for each channel you get a column or row of data. Right now I'm not sure if you are getting ten samples from the first channel or one sample for each of your channels. You will need to change your data manipulation in the second while loop so that it can handle this array format.
Hope this helps,
Laura
06-30-2006 07:54 AM