08-01-2012 03:08 PM
Is there a way to only get selected values from a signal? I am inputting data from a DAQ and would like to export each value only as i changes in the for loop. Right now, when I export the data there are many repeats of values.
Thanks,
VL
Solved! Go to Solution.
08-01-2012 03:14 PM - edited 08-01-2012 03:15 PM
Hi vrock,
yes, there's a way!
You know LabVIEW is a programming language? So you can program a small filter routine that will only pass values that changed compared to their predecessor...
Btw. that's a nice way to learn LabVIEW 🙂
08-01-2012 03:21 PM
Thanks so much for your response! What block would I use to create a filter routine? Sorry, I'm knew to labview...
-VL
08-01-2012 03:23 PM
08-01-2012 03:27 PM
How would I save a preceding value to use in the Case structure?
08-01-2012 03:30 PM
08-02-2012 01:47 PM
Hi vrock,
A shift register actually passes the last data (right side of loop) it received to the beginning of the loop (left side of loop). If you are familiar with text-based languages it is similar to an x = x + y instruction. www.ni.com/support has some good resources if you are new to LabVIEW and I would definitely recommend some online training course, as GerdW mentioned.