LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Using LabVIEW to create a simple datalogger.

Hello,
Can someone show me how to create a simple data logger.
Here's an example, Using a for loop can I keep track of the loop number in an array?
In the first loop ,first array would have 1, in the second loop,second array would have 1,2. And in the last loop array N, would have 1,2,3...N.
First loop =>      1
Second loop => 1 2
Third Loop =>    1 2 3
N loop =>           1 2  3 4 . . . N.
Thanks
0 Kudos
Message 1 of 2
(2,542 Views)
Building arrays are pretty simple. If you want the array outside the for loop, you just have to wire iteration terminal to the edge of the the for loop. The auto-indexing feature of a for loop will automatically create the array. If you need the array inside the for loop, you can use the build array function and a shift register.
0 Kudos
Message 2 of 2
(2,536 Views)