LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Simplify Merge Signal

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.

0 Kudos
Message 1 of 3
(2,264 Views)

You could try this...

Just convert the array to a cluster and feed it directly into the waveform chart.

 

20131iD374B0FC10D4201F

Ian

0 Kudos
Message 2 of 3
(2,256 Views)

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.

0 Kudos
Message 3 of 3
(2,254 Views)