I am fairly new to Labview. I have a sequence structure (8 frames) inside a while loop. I want to plot an analog out that I update once in frame 2 and once in frame 4 to a new value. I've only been able to see the later value from frame 4. The while loop is indefinite and I just want to monitor the two states. What's the easiest way to do this? Thanks!
How you want to do that? 1) If you want to see 2 graphs, first for frame 2 and second for frame 4, create to graphs and put each terminal in correspondle frame. 2) If you want to see in one graph, so you need to make pause or request from user for stoping in each frame.
Thanks for your help. I wanted to see one graph, but I didn't want to pause the routine. I want to use the data in each frame to add to the graph after each iteration of the while loop. Thanks again.
I just want to sample one pt. per iteration of the while loop for each frame in the inner sequence. Preferably in a circular buffer so that memory never becomes an issue.
> I just want to sample one pt. per iteration of the while loop for each > frame in the inner sequence. Preferably in a circular buffer so that > memory never becomes an issue. >
If you don't already have a solution, drop a chart on your panel instead of a graph. Charts collect data into a circular buffer automatically, whereas graphs replace data each time they are written to. You can write to the chart through either the terminal or a local variable to do what you want.