07-28-2010 09:21 AM
I have the following program where data is collected from a Keithley Multimeter that is sorted by channel and then plotted.
The problem is that if I leave the data in an array, I cannot plot it properly because it thinks the data is all one set, not 10 seperate channels.
I fixed it by splitting the array into 10 seperate arrays and then merging the signals and plotting the results, but it seems overly complicated.
Any suggestions on how to simplify the code.
Included the file below. (Sub vis included should be irrelevent to the qustion.)
Thanks.
07-28-2010 09:40 AM
You could try this...
Just convert the array to a cluster and feed it directly into the waveform chart.
Ian
07-28-2010 09:42 AM
It seems that your device send only one value by each loop cycle. That means each element of the array is just one point. If you want to plot them in cahrt you have to save the perviouse data in a register like example and then you can plot them. See attached VI.